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