aero.amxm.AsrnBaseType Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of amxm-jaxb Show documentation
Show all versions of amxm-jaxb Show documentation
The Java XML Bindings for the Aerodrome Mapping Exchange Model.
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2016.09.27 at 09:41:12 AM PDT
//
package aero.amxm;
import javax.annotation.Generated;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for AsrnBaseType complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AsrnBaseType">
* <complexContent>
* <extension base="{http://www.amxm.aero/schema/2.0.0}AbstractFeatureType">
* <sequence>
* <element name="idnetwrk" type="{http://www.amxm.aero/schema/2.0.0}idnetwrkTypeType"/>
* <element name="deicegrp" type="{http://www.amxm.aero/schema/2.0.0}deicegrpTypeType" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AsrnBaseType", propOrder = {
"idnetwrk",
"deicegrp"
})
@XmlSeeAlso({
AsrnEdgeType.class,
AsrnNodeType.class
})
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public abstract class AsrnBaseType
extends AbstractFeatureType
{
@XmlElement(required = true)
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
protected IdnetwrkTypeType idnetwrk;
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
protected DeicegrpTypeType deicegrp;
/**
* Gets the value of the idnetwrk property.
*
* @return
* possible object is
* {@link IdnetwrkTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public IdnetwrkTypeType getIdnetwrk() {
return idnetwrk;
}
/**
* Sets the value of the idnetwrk property.
*
* @param value
* allowed object is
* {@link IdnetwrkTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setIdnetwrk(IdnetwrkTypeType value) {
this.idnetwrk = value;
}
/**
* Gets the value of the deicegrp property.
*
* @return
* possible object is
* {@link DeicegrpTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public DeicegrpTypeType getDeicegrp() {
return deicegrp;
}
/**
* Sets the value of the deicegrp property.
*
* @param value
* allowed object is
* {@link DeicegrpTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setDeicegrp(DeicegrpTypeType value) {
this.deicegrp = value;
}
}