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

aero.amxm.ArrestingSystemLocationType 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.SurfacePropertyType;


/**
 * 

Java class for ArrestingSystemLocationType complex type. * *

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

 * <complexType name="ArrestingSystemLocationType">
 *   <complexContent>
 *     <extension base="{http://www.amxm.aero/schema/2.0.0}FeatureVerticalQualityType">
 *       <sequence>
 *         <element name="idthr" type="{http://www.amxm.aero/schema/2.0.0}idthrTypeType"/>
 *         <element name="setback" type="{http://www.amxm.aero/schema/2.0.0}setbackTypeType"/>
 *         <element name="aslength" type="{http://www.amxm.aero/schema/2.0.0}aslengthTypeType"/>
 *         <element name="aslwidth" type="{http://www.amxm.aero/schema/2.0.0}aslwidthTypeType"/>
 *         <element name="status" type="{http://www.amxm.aero/schema/2.0.0}statusTypeType"/>
 *         <element name="geopoly" type="{http://www.opengis.net/gml/3.2}SurfacePropertyType"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ArrestingSystemLocationType", propOrder = { "idthr", "setback", "aslength", "aslwidth", "status", "geopoly" }) @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11") public class ArrestingSystemLocationType 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 IdthrTypeType idthr; @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 SetbackTypeType setback; @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 AslengthTypeType aslength; @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 AslwidthTypeType aslwidth; @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 SurfacePropertyType geopoly; /** * Gets the value of the idthr property. * * @return * possible object is * {@link IdthrTypeType } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11") public IdthrTypeType getIdthr() { return idthr; } /** * Sets the value of the idthr property. * * @param value * allowed object is * {@link IdthrTypeType } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11") public void setIdthr(IdthrTypeType value) { this.idthr = value; } /** * Gets the value of the setback property. * * @return * possible object is * {@link SetbackTypeType } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11") public SetbackTypeType getSetback() { return setback; } /** * Sets the value of the setback property. * * @param value * allowed object is * {@link SetbackTypeType } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11") public void setSetback(SetbackTypeType value) { this.setback = value; } /** * Gets the value of the aslength property. * * @return * possible object is * {@link AslengthTypeType } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11") public AslengthTypeType getAslength() { return aslength; } /** * Sets the value of the aslength property. * * @param value * allowed object is * {@link AslengthTypeType } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11") public void setAslength(AslengthTypeType value) { this.aslength = value; } /** * Gets the value of the aslwidth property. * * @return * possible object is * {@link AslwidthTypeType } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11") public AslwidthTypeType getAslwidth() { return aslwidth; } /** * Sets the value of the aslwidth property. * * @param value * allowed object is * {@link AslwidthTypeType } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11") public void setAslwidth(AslwidthTypeType value) { this.aslwidth = 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 geopoly property. * * @return * possible object is * {@link SurfacePropertyType } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11") public SurfacePropertyType getGeopoly() { return geopoly; } /** * Sets the value of the geopoly property. * * @param value * allowed object is * {@link SurfacePropertyType } * */ @Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11") public void setGeopoly(SurfacePropertyType value) { this.geopoly = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy