aero.amxm.AerodromeSignType 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.PointPropertyType;
/**
* Java class for AerodromeSignType complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AerodromeSignType">
* <complexContent>
* <extension base="{http://www.amxm.aero/schema/2.0.0}FeatureVerticalQualityType">
* <sequence>
* <element name="height" type="{http://www.amxm.aero/schema/2.0.0}heightTypeType"/>
* <element name="status" type="{http://www.amxm.aero/schema/2.0.0}statusTypeType"/>
* <element name="signtype" type="{http://www.amxm.aero/schema/2.0.0}signtypeTypeType"/>
* <element name="msgfront" type="{http://www.amxm.aero/schema/2.0.0}msgfrontTypeType"/>
* <element name="msgback" type="{http://www.amxm.aero/schema/2.0.0}msgbackTypeType"/>
* <element name="signdir" type="{http://www.amxm.aero/schema/2.0.0}signdirTypeType"/>
* <element name="geopnt" type="{http://www.opengis.net/gml/3.2}PointPropertyType"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AerodromeSignType", propOrder = {
"height",
"status",
"signtype",
"msgfront",
"msgback",
"signdir",
"geopnt"
})
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public class AerodromeSignType
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 HeightTypeType height;
@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;
@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 SigntypeTypeType signtype;
@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 MsgfrontTypeType msgfront;
@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 MsgbackTypeType msgback;
@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 SigndirTypeType signdir;
@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 PointPropertyType geopnt;
/**
* Gets the value of the height property.
*
* @return
* possible object is
* {@link HeightTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public HeightTypeType getHeight() {
return height;
}
/**
* Sets the value of the height property.
*
* @param value
* allowed object is
* {@link HeightTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setHeight(HeightTypeType value) {
this.height = 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 signtype property.
*
* @return
* possible object is
* {@link SigntypeTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public SigntypeTypeType getSigntype() {
return signtype;
}
/**
* Sets the value of the signtype property.
*
* @param value
* allowed object is
* {@link SigntypeTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setSigntype(SigntypeTypeType value) {
this.signtype = value;
}
/**
* Gets the value of the msgfront property.
*
* @return
* possible object is
* {@link MsgfrontTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public MsgfrontTypeType getMsgfront() {
return msgfront;
}
/**
* Sets the value of the msgfront property.
*
* @param value
* allowed object is
* {@link MsgfrontTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setMsgfront(MsgfrontTypeType value) {
this.msgfront = value;
}
/**
* Gets the value of the msgback property.
*
* @return
* possible object is
* {@link MsgbackTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public MsgbackTypeType getMsgback() {
return msgback;
}
/**
* Sets the value of the msgback property.
*
* @param value
* allowed object is
* {@link MsgbackTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setMsgback(MsgbackTypeType value) {
this.msgback = value;
}
/**
* Gets the value of the signdir property.
*
* @return
* possible object is
* {@link SigndirTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public SigndirTypeType getSigndir() {
return signdir;
}
/**
* Sets the value of the signdir property.
*
* @param value
* allowed object is
* {@link SigndirTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setSigndir(SigndirTypeType value) {
this.signdir = value;
}
/**
* Gets the value of the geopnt property.
*
* @return
* possible object is
* {@link PointPropertyType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public PointPropertyType getGeopnt() {
return geopnt;
}
/**
* Sets the value of the geopnt property.
*
* @param value
* allowed object is
* {@link PointPropertyType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setGeopnt(PointPropertyType value) {
this.geopnt = value;
}
}