net.opengis.sps.x10.impl.TaskMessageDictionaryDocumentImpl Maven / Gradle / Ivy
/*
* An XML document type.
* Localname: TaskMessageDictionary
* Namespace: http://www.opengis.net/sps/1.0
* Java type: net.opengis.sps.x10.TaskMessageDictionaryDocument
*
* Automatically generated - do not modify.
*/
package net.opengis.sps.x10.impl;
/**
* A document containing one TaskMessageDictionary(@http://www.opengis.net/sps/1.0) element.
*
* This is a complex type.
*/
public class TaskMessageDictionaryDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements net.opengis.sps.x10.TaskMessageDictionaryDocument
{
private static final long serialVersionUID = 1L;
public TaskMessageDictionaryDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName TASKMESSAGEDICTIONARY$0 =
new javax.xml.namespace.QName("http://www.opengis.net/sps/1.0", "TaskMessageDictionary");
/**
* Gets the "TaskMessageDictionary" element
*/
public net.opengis.gml.DictionaryType getTaskMessageDictionary()
{
synchronized (monitor())
{
check_orphaned();
net.opengis.gml.DictionaryType target = null;
target = (net.opengis.gml.DictionaryType)get_store().find_element_user(TASKMESSAGEDICTIONARY$0, 0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "TaskMessageDictionary" element
*/
public void setTaskMessageDictionary(net.opengis.gml.DictionaryType taskMessageDictionary)
{
synchronized (monitor())
{
check_orphaned();
net.opengis.gml.DictionaryType target = null;
target = (net.opengis.gml.DictionaryType)get_store().find_element_user(TASKMESSAGEDICTIONARY$0, 0);
if (target == null)
{
target = (net.opengis.gml.DictionaryType)get_store().add_element_user(TASKMESSAGEDICTIONARY$0);
}
target.set(taskMessageDictionary);
}
}
/**
* Appends and returns a new empty "TaskMessageDictionary" element
*/
public net.opengis.gml.DictionaryType addNewTaskMessageDictionary()
{
synchronized (monitor())
{
check_orphaned();
net.opengis.gml.DictionaryType target = null;
target = (net.opengis.gml.DictionaryType)get_store().add_element_user(TASKMESSAGEDICTIONARY$0);
return target;
}
}
}