net.opengis.ows.x11.impl.ExtendedCapabilitiesDocumentImpl Maven / Gradle / Ivy
The newest version!
/*
* An XML document type.
* Localname: ExtendedCapabilities
* Namespace: http://www.opengis.net/ows/1.1
* Java type: net.opengis.ows.x11.ExtendedCapabilitiesDocument
*
* Automatically generated - do not modify.
*/
package net.opengis.ows.x11.impl;
import javax.xml.namespace.QName;
import org.apache.xmlbeans.QNameSet;
import org.apache.xmlbeans.XmlObject;
/**
* A document containing one ExtendedCapabilities(@http://www.opengis.net/ows/1.1) element.
*
* This is a complex type.
*/
public class ExtendedCapabilitiesDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements net.opengis.ows.x11.ExtendedCapabilitiesDocument {
private static final long serialVersionUID = 1L;
public ExtendedCapabilitiesDocumentImpl(org.apache.xmlbeans.SchemaType sType) {
super(sType);
}
private static final QName[] PROPERTY_QNAME = {
new QName("http://www.opengis.net/ows/1.1", "ExtendedCapabilities"),
};
/**
* Gets the "ExtendedCapabilities" element
*/
@Override
public org.apache.xmlbeans.XmlObject getExtendedCapabilities() {
synchronized (monitor()) {
check_orphaned();
org.apache.xmlbeans.XmlObject target = null;
target = (org.apache.xmlbeans.XmlObject)get_store().find_element_user(PROPERTY_QNAME[0], 0);
return (target == null) ? null : target;
}
}
/**
* Sets the "ExtendedCapabilities" element
*/
@Override
public void setExtendedCapabilities(org.apache.xmlbeans.XmlObject extendedCapabilities) {
generatedSetterHelperImpl(extendedCapabilities, PROPERTY_QNAME[0], 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
}
/**
* Appends and returns a new empty "ExtendedCapabilities" element
*/
@Override
public org.apache.xmlbeans.XmlObject addNewExtendedCapabilities() {
synchronized (monitor()) {
check_orphaned();
org.apache.xmlbeans.XmlObject target = null;
target = (org.apache.xmlbeans.XmlObject)get_store().add_element_user(PROPERTY_QNAME[0]);
return target;
}
}
}