All Downloads are FREE. Search and download functionalities are using the official Maven repository.

aero.amxm.StandGuidanceLineType Maven / Gradle / Ivy

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 StandGuidanceLineType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="StandGuidanceLineType">
 *   <complexContent>
 *     <extension base="{http://www.amxm.aero/schema/2.0.0}FeatureVerticalQualityType">
 *       <sequence>
 *         <element name="idstd" type="{http://www.amxm.aero/schema/2.0.0}idstdTypeType"/>
 *         <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="wingspan" type="{http://www.amxm.aero/schema/2.0.0}wingspanTypeType"/>
 *         <element name="termref" type="{http://www.amxm.aero/schema/2.0.0}termrefTypeType"/>
 *         <element name="geoline" type="{http://www.opengis.net/gml/3.2}CurvePropertyType"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "StandGuidanceLineType", propOrder = { "idstd", "status", "color", "style", "direc", "wingspan", "termref", "geoline" }) @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11") public class StandGuidanceLineType 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 IdstdTypeType idstd; @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, nillable = true) @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11") protected WingspanTypeType wingspan; @XmlElement(required = true, nillable = true) @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11") protected TermrefTypeType termref; @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 idstd property. * * @return * possible object is * {@link IdstdTypeType } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11") public IdstdTypeType getIdstd() { return idstd; } /** * Sets the value of the idstd property. * * @param value * allowed object is * {@link IdstdTypeType } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11") public void setIdstd(IdstdTypeType value) { this.idstd = 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 wingspan property. * * @return * possible object is * {@link WingspanTypeType } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11") public WingspanTypeType getWingspan() { return wingspan; } /** * Sets the value of the wingspan property. * * @param value * allowed object is * {@link WingspanTypeType } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11") public void setWingspan(WingspanTypeType value) { this.wingspan = value; } /** * Gets the value of the termref property. * * @return * possible object is * {@link TermrefTypeType } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11") public TermrefTypeType getTermref() { return termref; } /** * Sets the value of the termref property. * * @param value * allowed object is * {@link TermrefTypeType } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11") public void setTermref(TermrefTypeType value) { this.termref = 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy