ReliefType.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: 2016.12.07 at 01:58:16 PM CET
//
package nl.b3p.topnl.top250nl;
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;
/**
* <p>Java class for ReliefType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="ReliefType">
* <complexContent>
* <extension base="{http://register.geostandaarden.nl/gmlapplicatieschema/top250nl/1.2.0}_Top250nlObjectType">
* <sequence>
* <element name="typeRelief" type="{http://www.opengis.net/gml/3.2}CodeType"/>
* <element name="hoogteklasse" type="{http://www.opengis.net/gml/3.2}CodeType"/>
* <element name="lijnGeometrie" type="{http://www.opengis.net/gml/3.2}CurvePropertyType"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ReliefType", namespace = "http://register.geostandaarden.nl/gmlapplicatieschema/top250nl/1.2.0", propOrder = {
"typeRelief",
"hoogteklasse",
"lijnGeometrie"
})
public class ReliefType
extends Top250NlObjectType
{
@XmlElement(required = true)
protected CodeType typeRelief;
@XmlElement(required = true)
protected CodeType hoogteklasse;
@XmlAnyElement
protected Element lijnGeometrie;
/**
* Gets the value of the typeRelief property.
*
* @return
* possible object is
* {@link CodeType }
*
*/
public CodeType getTypeRelief() {
return typeRelief;
}
/**
* Sets the value of the typeRelief property.
*
* @param value
* allowed object is
* {@link CodeType }
*
*/
public void setTypeRelief(CodeType value) {
this.typeRelief = value;
}
/**
* Gets the value of the hoogteklasse property.
*
* @return
* possible object is
* {@link CodeType }
*
*/
public CodeType getHoogteklasse() {
return hoogteklasse;
}
/**
* Sets the value of the hoogteklasse property.
*
* @param value
* allowed object is
* {@link CodeType }
*
*/
public void setHoogteklasse(CodeType value) {
this.hoogteklasse = value;
}
/**
* Gets the value of the lijnGeometrie property.
*
* @return
* possible object is
* {@link Element }
*
*/
public Element getLijnGeometrie() {
return lijnGeometrie;
}
/**
* Sets the value of the lijnGeometrie property.
*
* @param value
* allowed object is
* {@link Element }
*
*/
public void setLijnGeometrie(Element value) {
this.lijnGeometrie = value;
}
}