aero.amxm.BridgeSideType 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 BridgeSideType complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="BridgeSideType">
* <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="dropside" type="{http://www.amxm.aero/schema/2.0.0}dropsideTypeType"/>
* <element name="geoline" type="{http://www.opengis.net/gml/3.2}CurvePropertyType"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BridgeSideType", propOrder = {
"idlin",
"dropside",
"geoline"
})
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public class BridgeSideType
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 DropsideTypeType dropside;
@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 dropside property.
*
* @return
* possible object is
* {@link DropsideTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public DropsideTypeType getDropside() {
return dropside;
}
/**
* Sets the value of the dropside property.
*
* @param value
* allowed object is
* {@link DropsideTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setDropside(DropsideTypeType value) {
this.dropside = 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;
}
}