aero.aixm.schema.x51.impl.AbstractProcedureDocumentImpl 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.
The newest version!
/*
* An XML document type.
* Localname: AbstractProcedure
* Namespace: http://www.aixm.aero/schema/5.1
* Java type: aero.aixm.schema.x51.AbstractProcedureDocument
*
* Automatically generated - do not modify.
*/
package aero.aixm.schema.x51.impl;
/**
* A document containing one AbstractProcedure(@http://www.aixm.aero/schema/5.1) element.
*
* This is a complex type.
*/
public class AbstractProcedureDocumentImpl extends aero.aixm.schema.x51.impl.AbstractAIXMFeatureDocumentImpl implements aero.aixm.schema.x51.AbstractProcedureDocument
{
private static final long serialVersionUID = 1L;
public AbstractProcedureDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName ABSTRACTPROCEDURE$0 =
new javax.xml.namespace.QName("http://www.aixm.aero/schema/5.1", "AbstractProcedure");
private static final org.apache.xmlbeans.QNameSet ABSTRACTPROCEDURE$1 = org.apache.xmlbeans.QNameSet.forArray( new javax.xml.namespace.QName[] {
new javax.xml.namespace.QName("http://www.aixm.aero/schema/5.1", "StandardInstrumentDeparture"),
new javax.xml.namespace.QName("http://www.aixm.aero/schema/5.1", "StandardInstrumentArrival"),
new javax.xml.namespace.QName("http://www.aixm.aero/schema/5.1", "AbstractProcedure"),
new javax.xml.namespace.QName("http://www.aixm.aero/schema/5.1", "InstrumentApproachProcedure"),
});
/**
* Gets the "AbstractProcedure" element
*/
public aero.aixm.schema.x51.AbstractProcedureType getAbstractProcedure()
{
synchronized (monitor())
{
check_orphaned();
aero.aixm.schema.x51.AbstractProcedureType target = null;
target = (aero.aixm.schema.x51.AbstractProcedureType)get_store().find_element_user(ABSTRACTPROCEDURE$1, 0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "AbstractProcedure" element
*/
public void setAbstractProcedure(aero.aixm.schema.x51.AbstractProcedureType abstractProcedure)
{
synchronized (monitor())
{
check_orphaned();
aero.aixm.schema.x51.AbstractProcedureType target = null;
target = (aero.aixm.schema.x51.AbstractProcedureType)get_store().find_element_user(ABSTRACTPROCEDURE$1, 0);
if (target == null)
{
target = (aero.aixm.schema.x51.AbstractProcedureType)get_store().add_element_user(ABSTRACTPROCEDURE$0);
}
target.set(abstractProcedure);
}
}
/**
* Appends and returns a new empty "AbstractProcedure" element
*/
public aero.aixm.schema.x51.AbstractProcedureType addNewAbstractProcedure()
{
synchronized (monitor())
{
check_orphaned();
aero.aixm.schema.x51.AbstractProcedureType target = null;
target = (aero.aixm.schema.x51.AbstractProcedureType)get_store().add_element_user(ABSTRACTPROCEDURE$0);
return target;
}
}
}