net.opengis.ows.x11.AbstractMetaDataDocument Maven / Gradle / Ivy
The newest version!
/*
* An XML document type.
* Localname: AbstractMetaData
* Namespace: http://www.opengis.net/ows/1.1
* Java type: net.opengis.ows.x11.AbstractMetaDataDocument
*
* Automatically generated - do not modify.
*/
package net.opengis.ows.x11;
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 AbstractMetaData(@http://www.opengis.net/ows/1.1) element.
*
* This is a complex type.
*/
public interface AbstractMetaDataDocument extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "abstractmetadataea44doctype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "AbstractMetaData" element
*/
org.apache.xmlbeans.XmlObject getAbstractMetaData();
/**
* Sets the "AbstractMetaData" element
*/
void setAbstractMetaData(org.apache.xmlbeans.XmlObject abstractMetaData);
/**
* Appends and returns a new empty "AbstractMetaData" element
*/
org.apache.xmlbeans.XmlObject addNewAbstractMetaData();
}