aero.aixm.schema.x51.impl.FeatureLifetimeDocumentImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of 52n-xml-aixm-v511 Show documentation
Show all versions of 52n-xml-aixm-v511 Show documentation
Aeronautical Information Exchange 5.1 - adjusted to support metadata by reference.
DNOTAM Event and AIXMBasicMessage schemas included.
The AIXM_AbstractGML_ObjectTypes.xsd needed to be adjusted to work around an existing
bug (aixm:name AND gml:name as children of the same type). This resulted in the gml:id
not set to use=required, so handle validation with good care.
/*
* An XML document type.
* Localname: featureLifetime
* Namespace: http://www.aixm.aero/schema/5.1
* Java type: aero.aixm.schema.x51.FeatureLifetimeDocument
*
* Automatically generated - do not modify.
*/
package aero.aixm.schema.x51.impl;
/**
* A document containing one featureLifetime(@http://www.aixm.aero/schema/5.1) element.
*
* This is a complex type.
*/
public class FeatureLifetimeDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements aero.aixm.schema.x51.FeatureLifetimeDocument
{
private static final long serialVersionUID = 1L;
public FeatureLifetimeDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName FEATURELIFETIME$0 =
new javax.xml.namespace.QName("http://www.aixm.aero/schema/5.1", "featureLifetime");
/**
* Gets the "featureLifetime" element
*/
public net.opengis.gml.x32.TimePrimitivePropertyType getFeatureLifetime()
{
synchronized (monitor())
{
check_orphaned();
net.opengis.gml.x32.TimePrimitivePropertyType target = null;
target = (net.opengis.gml.x32.TimePrimitivePropertyType)get_store().find_element_user(FEATURELIFETIME$0, 0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "featureLifetime" element
*/
public void setFeatureLifetime(net.opengis.gml.x32.TimePrimitivePropertyType featureLifetime)
{
synchronized (monitor())
{
check_orphaned();
net.opengis.gml.x32.TimePrimitivePropertyType target = null;
target = (net.opengis.gml.x32.TimePrimitivePropertyType)get_store().find_element_user(FEATURELIFETIME$0, 0);
if (target == null)
{
target = (net.opengis.gml.x32.TimePrimitivePropertyType)get_store().add_element_user(FEATURELIFETIME$0);
}
target.set(featureLifetime);
}
}
/**
* Appends and returns a new empty "featureLifetime" element
*/
public net.opengis.gml.x32.TimePrimitivePropertyType addNewFeatureLifetime()
{
synchronized (monitor())
{
check_orphaned();
net.opengis.gml.x32.TimePrimitivePropertyType target = null;
target = (net.opengis.gml.x32.TimePrimitivePropertyType)get_store().add_element_user(FEATURELIFETIME$0);
return target;
}
}
}