net.opengis.wmts.x10.LayerDocument Maven / Gradle / Ivy
The newest version!
/*
* An XML document type.
* Localname: Layer
* Namespace: http://www.opengis.net/wmts/1.0
* Java type: net.opengis.wmts.x10.LayerDocument
*
* Automatically generated - do not modify.
*/
package net.opengis.wmts.x10;
import org.apache.xmlbeans.impl.schema.ElementFactory;
import org.apache.xmlbeans.impl.schema.AbstractDocumentFactory;
import org.apache.xmlbeans.impl.schema.DocumentFactory;
import org.apache.xmlbeans.impl.schema.SimpleTypeFactory;
/**
* A document containing one Layer(@http://www.opengis.net/wmts/1.0) element.
*
* This is a complex type.
*/
public interface LayerDocument extends net.opengis.ows.x11.DatasetDescriptionSummaryDocument {
DocumentFactory Factory = new DocumentFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "layer7a13doctype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "Layer" element
*/
net.opengis.wmts.x10.LayerType getLayer();
/**
* Sets the "Layer" element
*/
void setLayer(net.opengis.wmts.x10.LayerType layer);
/**
* Appends and returns a new empty "Layer" element
*/
net.opengis.wmts.x10.LayerType addNewLayer();
}