aero.amxm.FeatureBaseType 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 FeatureBaseType complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FeatureBaseType">
* <complexContent>
* <extension base="{http://www.amxm.aero/schema/2.0.0}AbstractFeatureType">
* <sequence>
* <element name="hacc" type="{http://www.amxm.aero/schema/2.0.0}haccTypeType"/>
* <element name="hres" type="{http://www.amxm.aero/schema/2.0.0}hresTypeType"/>
* <element name="integr" type="{http://www.amxm.aero/schema/2.0.0}integrTypeType"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FeatureBaseType", propOrder = {
"hacc",
"hres",
"integr"
})
@XmlSeeAlso({
ATCBlindSpotType.class,
ConstructionAreaType.class,
FrequencyAreaType.class,
HotspotType.class,
PositionMarkingType.class,
FeatureVerticalQualityType.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 FeatureBaseType
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 HaccTypeType hacc;
@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 HresTypeType hres;
@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 IntegrTypeType integr;
/**
* Gets the value of the hacc property.
*
* @return
* possible object is
* {@link HaccTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public HaccTypeType getHacc() {
return hacc;
}
/**
* Sets the value of the hacc property.
*
* @param value
* allowed object is
* {@link HaccTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setHacc(HaccTypeType value) {
this.hacc = value;
}
/**
* Gets the value of the hres property.
*
* @return
* possible object is
* {@link HresTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public HresTypeType getHres() {
return hres;
}
/**
* Sets the value of the hres property.
*
* @param value
* allowed object is
* {@link HresTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setHres(HresTypeType value) {
this.hres = value;
}
/**
* Gets the value of the integr property.
*
* @return
* possible object is
* {@link IntegrTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public IntegrTypeType getIntegr() {
return integr;
}
/**
* Sets the value of the integr property.
*
* @param value
* allowed object is
* {@link IntegrTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setIntegr(IntegrTypeType value) {
this.integr = value;
}
}