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