aero.amxm.RunwayExitLineType 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.XmlType;
import net.opengis.gml.CurvePropertyType;
/**
* Java class for RunwayExitLineType complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RunwayExitLineType">
* <complexContent>
* <extension base="{http://www.amxm.aero/schema/2.0.0}FeatureVerticalQualityType">
* <sequence>
* <element name="idlin" type="{http://www.amxm.aero/schema/2.0.0}idlinTypeType"/>
* <element name="status" type="{http://www.amxm.aero/schema/2.0.0}statusTypeType"/>
* <element name="color" type="{http://www.amxm.aero/schema/2.0.0}colorTypeType" minOccurs="0"/>
* <element name="style" type="{http://www.amxm.aero/schema/2.0.0}styleTypeType" minOccurs="0"/>
* <element name="direc" type="{http://www.amxm.aero/schema/2.0.0}direcTypeType"/>
* <element name="exittype" type="{http://www.amxm.aero/schema/2.0.0}exittypeTypeType"/>
* <element name="idrwy" type="{http://www.amxm.aero/schema/2.0.0}idrwyTypeType"/>
* <element name="geoline" type="{http://www.opengis.net/gml/3.2}CurvePropertyType"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RunwayExitLineType", propOrder = {
"idlin",
"status",
"color",
"style",
"direc",
"exittype",
"idrwy",
"geoline"
})
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public class RunwayExitLineType
extends FeatureVerticalQualityType
{
@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 IdlinTypeType idlin;
@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 StatusTypeType status;
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
protected ColorTypeType color;
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
protected StyleTypeType style;
@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 DirecTypeType direc;
@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 ExittypeTypeType exittype;
@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 IdrwyTypeType idrwy;
@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 CurvePropertyType geoline;
/**
* Gets the value of the idlin property.
*
* @return
* possible object is
* {@link IdlinTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public IdlinTypeType getIdlin() {
return idlin;
}
/**
* Sets the value of the idlin property.
*
* @param value
* allowed object is
* {@link IdlinTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setIdlin(IdlinTypeType value) {
this.idlin = value;
}
/**
* Gets the value of the status property.
*
* @return
* possible object is
* {@link StatusTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public StatusTypeType getStatus() {
return status;
}
/**
* Sets the value of the status property.
*
* @param value
* allowed object is
* {@link StatusTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setStatus(StatusTypeType value) {
this.status = value;
}
/**
* Gets the value of the color property.
*
* @return
* possible object is
* {@link ColorTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public ColorTypeType getColor() {
return color;
}
/**
* Sets the value of the color property.
*
* @param value
* allowed object is
* {@link ColorTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setColor(ColorTypeType value) {
this.color = value;
}
/**
* Gets the value of the style property.
*
* @return
* possible object is
* {@link StyleTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public StyleTypeType getStyle() {
return style;
}
/**
* Sets the value of the style property.
*
* @param value
* allowed object is
* {@link StyleTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setStyle(StyleTypeType value) {
this.style = value;
}
/**
* Gets the value of the direc property.
*
* @return
* possible object is
* {@link DirecTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public DirecTypeType getDirec() {
return direc;
}
/**
* Sets the value of the direc property.
*
* @param value
* allowed object is
* {@link DirecTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setDirec(DirecTypeType value) {
this.direc = value;
}
/**
* Gets the value of the exittype property.
*
* @return
* possible object is
* {@link ExittypeTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public ExittypeTypeType getExittype() {
return exittype;
}
/**
* Sets the value of the exittype property.
*
* @param value
* allowed object is
* {@link ExittypeTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setExittype(ExittypeTypeType value) {
this.exittype = value;
}
/**
* Gets the value of the idrwy property.
*
* @return
* possible object is
* {@link IdrwyTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public IdrwyTypeType getIdrwy() {
return idrwy;
}
/**
* Sets the value of the idrwy property.
*
* @param value
* allowed object is
* {@link IdrwyTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setIdrwy(IdrwyTypeType value) {
this.idrwy = value;
}
/**
* Gets the value of the geoline property.
*
* @return
* possible object is
* {@link CurvePropertyType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public CurvePropertyType getGeoline() {
return geoline;
}
/**
* Sets the value of the geoline property.
*
* @param value
* allowed object is
* {@link CurvePropertyType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setGeoline(CurvePropertyType value) {
this.geoline = value;
}
}