net.opengis.swe.x101.impl.TimeIntervalGridDocumentImpl Maven / Gradle / Ivy
/*
* An XML document type.
* Localname: TimeIntervalGrid
* Namespace: http://www.opengis.net/swe/1.0.1
* Java type: net.opengis.swe.x101.TimeIntervalGridDocument
*
* Automatically generated - do not modify.
*/
package net.opengis.swe.x101.impl;
/**
* A document containing one TimeIntervalGrid(@http://www.opengis.net/swe/1.0.1) element.
*
* This is a complex type.
*/
public class TimeIntervalGridDocumentImpl extends net.opengis.swe.x101.impl.TimeGridDocumentImpl implements net.opengis.swe.x101.TimeIntervalGridDocument
{
private static final long serialVersionUID = 1L;
public TimeIntervalGridDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName TIMEINTERVALGRID$0 =
new javax.xml.namespace.QName("http://www.opengis.net/swe/1.0.1", "TimeIntervalGrid");
/**
* Gets the "TimeIntervalGrid" element
*/
public net.opengis.swe.x101.TimeIntervalGridType getTimeIntervalGrid()
{
synchronized (monitor())
{
check_orphaned();
net.opengis.swe.x101.TimeIntervalGridType target = null;
target = (net.opengis.swe.x101.TimeIntervalGridType)get_store().find_element_user(TIMEINTERVALGRID$0, 0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "TimeIntervalGrid" element
*/
public void setTimeIntervalGrid(net.opengis.swe.x101.TimeIntervalGridType timeIntervalGrid)
{
synchronized (monitor())
{
check_orphaned();
net.opengis.swe.x101.TimeIntervalGridType target = null;
target = (net.opengis.swe.x101.TimeIntervalGridType)get_store().find_element_user(TIMEINTERVALGRID$0, 0);
if (target == null)
{
target = (net.opengis.swe.x101.TimeIntervalGridType)get_store().add_element_user(TIMEINTERVALGRID$0);
}
target.set(timeIntervalGrid);
}
}
/**
* Appends and returns a new empty "TimeIntervalGrid" element
*/
public net.opengis.swe.x101.TimeIntervalGridType addNewTimeIntervalGrid()
{
synchronized (monitor())
{
check_orphaned();
net.opengis.swe.x101.TimeIntervalGridType target = null;
target = (net.opengis.swe.x101.TimeIntervalGridType)get_store().add_element_user(TIMEINTERVALGRID$0);
return target;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy