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