aero.amxm.VerticalPolygonalStructureType 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 VerticalPolygonalStructureType complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VerticalPolygonalStructureType">
* <complexContent>
* <extension base="{http://www.amxm.aero/schema/2.0.0}FeatureVerticalQualityType">
* <sequence>
* <element name="plysttyp" type="{http://www.amxm.aero/schema/2.0.0}plysttypTypeType"/>
* <element name="material" type="{http://www.amxm.aero/schema/2.0.0}materialTypeType"/>
* <element name="height" type="{http://www.amxm.aero/schema/2.0.0}heightTypeType"/>
* <element name="ident" type="{http://www.amxm.aero/schema/2.0.0}identTypeType"/>
* <element name="elev" type="{http://www.amxm.aero/schema/2.0.0}elevTypeType"/>
* <element name="geopoly" type="{http://www.opengis.net/gml/3.2}SurfacePropertyType"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VerticalPolygonalStructureType", propOrder = {
"plysttyp",
"material",
"height",
"ident",
"elev",
"geopoly"
})
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public class VerticalPolygonalStructureType
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 PlysttypTypeType plysttyp;
@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 MaterialTypeType material;
@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 HeightTypeType height;
@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 IdentTypeType ident;
@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 ElevTypeType elev;
@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 plysttyp property.
*
* @return
* possible object is
* {@link PlysttypTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public PlysttypTypeType getPlysttyp() {
return plysttyp;
}
/**
* Sets the value of the plysttyp property.
*
* @param value
* allowed object is
* {@link PlysttypTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setPlysttyp(PlysttypTypeType value) {
this.plysttyp = value;
}
/**
* Gets the value of the material property.
*
* @return
* possible object is
* {@link MaterialTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public MaterialTypeType getMaterial() {
return material;
}
/**
* Sets the value of the material property.
*
* @param value
* allowed object is
* {@link MaterialTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setMaterial(MaterialTypeType value) {
this.material = value;
}
/**
* Gets the value of the height property.
*
* @return
* possible object is
* {@link HeightTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public HeightTypeType getHeight() {
return height;
}
/**
* Sets the value of the height property.
*
* @param value
* allowed object is
* {@link HeightTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setHeight(HeightTypeType value) {
this.height = value;
}
/**
* Gets the value of the ident property.
*
* @return
* possible object is
* {@link IdentTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public IdentTypeType getIdent() {
return ident;
}
/**
* Sets the value of the ident property.
*
* @param value
* allowed object is
* {@link IdentTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setIdent(IdentTypeType value) {
this.ident = value;
}
/**
* Gets the value of the elev property.
*
* @return
* possible object is
* {@link ElevTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public ElevTypeType getElev() {
return elev;
}
/**
* Sets the value of the elev property.
*
* @param value
* allowed object is
* {@link ElevTypeType }
*
*/
@Generated(value = "com.sun.tools.xjc.Driver", date = "2016-09-27T09:41:12-07:00", comments = "JAXB RI v2.2.11")
public void setElev(ElevTypeType value) {
this.elev = 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;
}
}