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