aero.amxm.SurveyControlPointType 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 SurveyControlPointType complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SurveyControlPointType">
* <complexContent>
* <extension base="{http://www.amxm.aero/schema/2.0.0}FeatureVerticalQualityType">
* <sequence>
* <element name="coord" type="{http://www.amxm.aero/schema/2.0.0}coordTypeType"/>
* <element name="hdatum" type="{http://www.amxm.aero/schema/2.0.0}hdatumTypeType"/>
* <element name="spheroid" type="{http://www.amxm.aero/schema/2.0.0}spheroidTypeType"/>
* <element name="vdatum" type="{http://www.amxm.aero/schema/2.0.0}vdatumTypeType"/>
* <element name="project" type="{http://www.amxm.aero/schema/2.0.0}projectTypeType"/>
* <element name="idsurv" type="{http://www.amxm.aero/schema/2.0.0}idsurvTypeType"/>
* <element name="geopnt" type="{http://www.opengis.net/gml/3.2}PointPropertyType"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SurveyControlPointType", propOrder = {
"coord",
"hdatum",
"spheroid",
"vdatum",
"project",
"idsurv",
"geopnt"
})
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public class SurveyControlPointType
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 CoordTypeType coord;
@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 HdatumTypeType hdatum;
@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 SpheroidTypeType spheroid;
@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 VdatumTypeType vdatum;
@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 ProjectTypeType project;
@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 IdsurvTypeType idsurv;
@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 coord property.
*
* @return
* possible object is
* {@link CoordTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public CoordTypeType getCoord() {
return coord;
}
/**
* Sets the value of the coord property.
*
* @param value
* allowed object is
* {@link CoordTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setCoord(CoordTypeType value) {
this.coord = value;
}
/**
* Gets the value of the hdatum property.
*
* @return
* possible object is
* {@link HdatumTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public HdatumTypeType getHdatum() {
return hdatum;
}
/**
* Sets the value of the hdatum property.
*
* @param value
* allowed object is
* {@link HdatumTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setHdatum(HdatumTypeType value) {
this.hdatum = value;
}
/**
* Gets the value of the spheroid property.
*
* @return
* possible object is
* {@link SpheroidTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public SpheroidTypeType getSpheroid() {
return spheroid;
}
/**
* Sets the value of the spheroid property.
*
* @param value
* allowed object is
* {@link SpheroidTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setSpheroid(SpheroidTypeType value) {
this.spheroid = value;
}
/**
* Gets the value of the vdatum property.
*
* @return
* possible object is
* {@link VdatumTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public VdatumTypeType getVdatum() {
return vdatum;
}
/**
* Sets the value of the vdatum property.
*
* @param value
* allowed object is
* {@link VdatumTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setVdatum(VdatumTypeType value) {
this.vdatum = value;
}
/**
* Gets the value of the project property.
*
* @return
* possible object is
* {@link ProjectTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public ProjectTypeType getProject() {
return project;
}
/**
* Sets the value of the project property.
*
* @param value
* allowed object is
* {@link ProjectTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setProject(ProjectTypeType value) {
this.project = value;
}
/**
* Gets the value of the idsurv property.
*
* @return
* possible object is
* {@link IdsurvTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public IdsurvTypeType getIdsurv() {
return idsurv;
}
/**
* Sets the value of the idsurv property.
*
* @param value
* allowed object is
* {@link IdsurvTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setIdsurv(IdsurvTypeType value) {
this.idsurv = 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;
}
}