TerreinType.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 02:40:39 PM CET
//
package nl.b3p.topnl.top100nl;
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import org.w3c.dom.Element;
/**
* Java class for TerreinType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="TerreinType">
* <complexContent>
* <extension base="{http://register.geostandaarden.nl/gmlapplicatieschema/top100nl/1.1.0}_Top100nlObjectType">
* <sequence>
* <element name="geometrie" type="{http://www.opengis.net/gml/3.2}SurfacePropertyType"/>
* <element name="typeLandgebruik" type="{http://register.geostandaarden.nl/gmlapplicatieschema/top100nl/1.1.0}TypeLandgebruikT100Type"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
* </pre>
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(
name = "TerreinType",
namespace = "http://register.geostandaarden.nl/gmlapplicatieschema/top100nl/1.1.0",
propOrder = {"geometrie", "typeLandgebruik"})
public class TerreinType extends Top100NlObjectType {
@XmlAnyElement protected Element geometrie;
@XmlElement(required = true)
@XmlSchemaType(name = "string")
protected TypeLandgebruikT100Type typeLandgebruik;
/**
* 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;
}
/**
* Gets the value of the typeLandgebruik property.
*
* @return possible object is {@link TypeLandgebruikT100Type }
*/
public TypeLandgebruikT100Type getTypeLandgebruik() {
return typeLandgebruik;
}
/**
* Sets the value of the typeLandgebruik property.
*
* @param value allowed object is {@link TypeLandgebruikT100Type }
*/
public void setTypeLandgebruik(TypeLandgebruikT100Type value) {
this.typeLandgebruik = value;
}
}