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