net.opengis.sps.x20.impl.DataAvailableDocumentImpl Maven / Gradle / Ivy
/*
* An XML document type.
* Localname: DataAvailable
* Namespace: http://www.opengis.net/sps/2.0
* Java type: net.opengis.sps.x20.DataAvailableDocument
*
* Automatically generated - do not modify.
*/
package net.opengis.sps.x20.impl;
/**
* A document containing one DataAvailable(@http://www.opengis.net/sps/2.0) element.
*
* This is a complex type.
*/
public class DataAvailableDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements net.opengis.sps.x20.DataAvailableDocument
{
private static final long serialVersionUID = 1L;
public DataAvailableDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName DATAAVAILABLE$0 =
new javax.xml.namespace.QName("http://www.opengis.net/sps/2.0", "DataAvailable");
/**
* Gets the "DataAvailable" element
*/
public net.opengis.sps.x20.DataAvailableType getDataAvailable()
{
synchronized (monitor())
{
check_orphaned();
net.opengis.sps.x20.DataAvailableType target = null;
target = (net.opengis.sps.x20.DataAvailableType)get_store().find_element_user(DATAAVAILABLE$0, 0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "DataAvailable" element
*/
public void setDataAvailable(net.opengis.sps.x20.DataAvailableType dataAvailable)
{
synchronized (monitor())
{
check_orphaned();
net.opengis.sps.x20.DataAvailableType target = null;
target = (net.opengis.sps.x20.DataAvailableType)get_store().find_element_user(DATAAVAILABLE$0, 0);
if (target == null)
{
target = (net.opengis.sps.x20.DataAvailableType)get_store().add_element_user(DATAAVAILABLE$0);
}
target.set(dataAvailable);
}
}
/**
* Appends and returns a new empty "DataAvailable" element
*/
public net.opengis.sps.x20.DataAvailableType addNewDataAvailable()
{
synchronized (monitor())
{
check_orphaned();
net.opengis.sps.x20.DataAvailableType target = null;
target = (net.opengis.sps.x20.DataAvailableType)get_store().add_element_user(DATAAVAILABLE$0);
return target;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy