aero.amxm.ConstructionAreaType 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.SurfacePropertyType;
/**
* Java class for ConstructionAreaType complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ConstructionAreaType">
* <complexContent>
* <extension base="{http://www.amxm.aero/schema/2.0.0}FeatureBaseType">
* <sequence>
* <element name="pstdate" type="{http://www.amxm.aero/schema/2.0.0}pstdateTypeType"/>
* <element name="pendate" type="{http://www.amxm.aero/schema/2.0.0}pendateTypeType"/>
* <element name="piocdate" type="{http://www.amxm.aero/schema/2.0.0}piocdateTypeType"/>
* <element name="geopoly" type="{http://www.opengis.net/gml/3.2}SurfacePropertyType"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ConstructionAreaType", propOrder = {
"pstdate",
"pendate",
"piocdate",
"geopoly"
})
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public class ConstructionAreaType
extends FeatureBaseType
{
@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 PstdateTypeType pstdate;
@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 PendateTypeType pendate;
@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 PiocdateTypeType piocdate;
@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 pstdate property.
*
* @return
* possible object is
* {@link PstdateTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public PstdateTypeType getPstdate() {
return pstdate;
}
/**
* Sets the value of the pstdate property.
*
* @param value
* allowed object is
* {@link PstdateTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setPstdate(PstdateTypeType value) {
this.pstdate = value;
}
/**
* Gets the value of the pendate property.
*
* @return
* possible object is
* {@link PendateTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public PendateTypeType getPendate() {
return pendate;
}
/**
* Sets the value of the pendate property.
*
* @param value
* allowed object is
* {@link PendateTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setPendate(PendateTypeType value) {
this.pendate = value;
}
/**
* Gets the value of the piocdate property.
*
* @return
* possible object is
* {@link PiocdateTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public PiocdateTypeType getPiocdate() {
return piocdate;
}
/**
* Sets the value of the piocdate property.
*
* @param value
* allowed object is
* {@link PiocdateTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setPiocdate(PiocdateTypeType value) {
this.piocdate = 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;
}
}