net.opengis.ows.x11.ManifestDocument Maven / Gradle / Ivy
The newest version!
/*
* An XML document type.
* Localname: Manifest
* Namespace: http://www.opengis.net/ows/1.1
* Java type: net.opengis.ows.x11.ManifestDocument
*
* 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 Manifest(@http://www.opengis.net/ows/1.1) element.
*
* This is a complex type.
*/
public interface ManifestDocument extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "manifeste0e6doctype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "Manifest" element
*/
net.opengis.ows.x11.ManifestType getManifest();
/**
* Sets the "Manifest" element
*/
void setManifest(net.opengis.ows.x11.ManifestType manifest);
/**
* Appends and returns a new empty "Manifest" element
*/
net.opengis.ows.x11.ManifestType addNewManifest();
}