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