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