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