HoogteType.java
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference
// Implementation, v2.2.8-b130911.1802
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.01.10 at 11:33:39 AM CET
//
package nl.b3p.topnl.top10nl;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import org.w3c.dom.Element;
/**
* Java class for HoogteType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="HoogteType">
* <complexContent>
* <extension base="{http://register.geostandaarden.nl/gmlapplicatieschema/top10nl/1.2.0}_Top10nlObjectType">
* <sequence>
* <element name="typeHoogte" type="{http://www.opengis.net/gml/3.2}CodeType"/>
* <element name="hoogte" type="{http://www.w3.org/2001/XMLSchema}double"/>
* <element name="referentievlak" type="{http://www.opengis.net/gml/3.2}CodeType"/>
* <element name="geometrie" type="{http://register.geostandaarden.nl/gmlapplicatieschema/brt-algemeen/1.2.0}BRTLijnOfPuntPropertyType"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
* </pre>
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(
name = "HoogteType",
namespace = "http://register.geostandaarden.nl/gmlapplicatieschema/top10nl/1.2.0",
propOrder = {"typeHoogte", "hoogte", "referentievlak", "geometrie"})
public class HoogteType extends Top10NlObjectType {
@XmlElement(required = true)
protected CodeType typeHoogte;
protected double hoogte;
@XmlElement(required = true)
protected CodeType referentievlak;
@XmlAnyElement protected Element geometrie;
/**
* Gets the value of the typeHoogte property.
*
* @return possible object is {@link CodeType }
*/
public CodeType getTypeHoogte() {
return typeHoogte;
}
/**
* Sets the value of the typeHoogte property.
*
* @param value allowed object is {@link CodeType }
*/
public void setTypeHoogte(CodeType value) {
this.typeHoogte = value;
}
/** Gets the value of the hoogte property. */
public double getHoogte() {
return hoogte;
}
/** Sets the value of the hoogte property. */
public void setHoogte(double value) {
this.hoogte = value;
}
/**
* Gets the value of the referentievlak property.
*
* @return possible object is {@link CodeType }
*/
public CodeType getReferentievlak() {
return referentievlak;
}
/**
* Sets the value of the referentievlak property.
*
* @param value allowed object is {@link CodeType }
*/
public void setReferentievlak(CodeType value) {
this.referentievlak = value;
}
/**
* Gets the value of the geometrie property.
*
* @return possible object is {@link Element }
*/
public Element getGeometrie() {
return geometrie;
}
/**
* Sets the value of the geometrie property.
*
* @param value allowed object is {@link Element }
*/
public void setGeometrie(Element value) {
this.geometrie = value;
}
}