net.opengis.ows.x11.FeesDocument Maven / Gradle / Ivy
The newest version!
/*
* An XML document type.
* Localname: Fees
* Namespace: http://www.opengis.net/ows/1.1
* Java type: net.opengis.ows.x11.FeesDocument
*
* 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 Fees(@http://www.opengis.net/ows/1.1) element.
*
* This is a complex type.
*/
public interface FeesDocument extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "fees7528doctype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "Fees" element
*/
java.lang.String getFees();
/**
* Gets (as xml) the "Fees" element
*/
org.apache.xmlbeans.XmlString xgetFees();
/**
* Sets the "Fees" element
*/
void setFees(java.lang.String fees);
/**
* Sets (as xml) the "Fees" element
*/
void xsetFees(org.apache.xmlbeans.XmlString fees);
}