net.opengis.ogc.impl.TMOveralpsDocumentImpl Maven / Gradle / Ivy
/*
* An XML document type.
* Localname: TM_Overalps
* Namespace: http://www.opengis.net/ogc
* Java type: net.opengis.ogc.TMOveralpsDocument
*
* Automatically generated - do not modify.
*/
package net.opengis.ogc.impl;
/**
* A document containing one TM_Overalps(@http://www.opengis.net/ogc) element.
*
* This is a complex type.
*/
public class TMOveralpsDocumentImpl extends net.opengis.ogc.impl.TemporalOpsDocumentImpl implements net.opengis.ogc.TMOveralpsDocument
{
private static final long serialVersionUID = 1L;
public TMOveralpsDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName TMOVERALPS$0 =
new javax.xml.namespace.QName("http://www.opengis.net/ogc", "TM_Overalps");
/**
* Gets the "TM_Overalps" element
*/
public net.opengis.ogc.BinaryTemporalOpType getTMOveralps()
{
synchronized (monitor())
{
check_orphaned();
net.opengis.ogc.BinaryTemporalOpType target = null;
target = (net.opengis.ogc.BinaryTemporalOpType)get_store().find_element_user(TMOVERALPS$0, 0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "TM_Overalps" element
*/
public void setTMOveralps(net.opengis.ogc.BinaryTemporalOpType tmOveralps)
{
synchronized (monitor())
{
check_orphaned();
net.opengis.ogc.BinaryTemporalOpType target = null;
target = (net.opengis.ogc.BinaryTemporalOpType)get_store().find_element_user(TMOVERALPS$0, 0);
if (target == null)
{
target = (net.opengis.ogc.BinaryTemporalOpType)get_store().add_element_user(TMOVERALPS$0);
}
target.set(tmOveralps);
}
}
/**
* Appends and returns a new empty "TM_Overalps" element
*/
public net.opengis.ogc.BinaryTemporalOpType addNewTMOveralps()
{
synchronized (monitor())
{
check_orphaned();
net.opengis.ogc.BinaryTemporalOpType target = null;
target = (net.opengis.ogc.BinaryTemporalOpType)get_store().add_element_user(TMOVERALPS$0);
return target;
}
}
}