FunctioneelGebiedType.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.12.08 at 10:18:04 AM CET
//
package nl.b3p.topnl.top250nl;
import java.util.ArrayList;
import java.util.List;
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 FunctioneelGebiedType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="FunctioneelGebiedType">
* <complexContent>
* <extension base="{http://register.geostandaarden.nl/gmlapplicatieschema/top250nl/1.2.1}_Top250nlObjectType">
* <sequence>
* <element name="typeFunctioneelGebied" type="{http://www.opengis.net/gml/3.2}CodeType"/>
* <element name="soortnaam" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="naamNL" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="naamFries" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="geometrie" type="{http://register.geostandaarden.nl/gmlapplicatieschema/brt-algemeen/1.2.0}BRTVlakMultivlakOfPuntPropertyType"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
* </pre>
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(
name = "FunctioneelGebiedType",
namespace = "http://register.geostandaarden.nl/gmlapplicatieschema/top250nl/1.2.1",
propOrder = {"typeFunctioneelGebied", "soortnaam", "naamNL", "naamFries", "geometrie"})
public class FunctioneelGebiedType extends Top250NlObjectType {
@XmlElement(required = true)
protected CodeType typeFunctioneelGebied;
protected String soortnaam;
protected List<String> naamNL;
protected List<String> naamFries;
@XmlAnyElement protected Element geometrie;
/**
* Gets the value of the typeFunctioneelGebied property.
*
* @return possible object is {@link CodeType }
*/
public CodeType getTypeFunctioneelGebied() {
return typeFunctioneelGebied;
}
/**
* Sets the value of the typeFunctioneelGebied property.
*
* @param value allowed object is {@link CodeType }
*/
public void setTypeFunctioneelGebied(CodeType value) {
this.typeFunctioneelGebied = value;
}
/**
* Gets the value of the soortnaam property.
*
* @return possible object is {@link String }
*/
public String getSoortnaam() {
return soortnaam;
}
/**
* Sets the value of the soortnaam property.
*
* @param value allowed object is {@link String }
*/
public void setSoortnaam(String value) {
this.soortnaam = value;
}
/**
* Gets the value of the naamNL property.
*
* <p>This accessor method returns a reference to the live list, not a snapshot. Therefore any
* modification you make to the returned list will be present inside the JAXB object. This is why
* there is not a <CODE>set</CODE> method for the naamNL property.
*
* <p>For example, to add a new item, do as follows:
*
* <pre>
* getNaamNL().add(newItem);
* </pre>
*
* <p>Objects of the following type(s) are allowed in the list {@link String }
*/
public List<String> getNaamNL() {
if (naamNL == null) {
naamNL = new ArrayList<String>();
}
return this.naamNL;
}
/**
* Gets the value of the naamFries property.
*
* <p>This accessor method returns a reference to the live list, not a snapshot. Therefore any
* modification you make to the returned list will be present inside the JAXB object. This is why
* there is not a <CODE>set</CODE> method for the naamFries property.
*
* <p>For example, to add a new item, do as follows:
*
* <pre>
* getNaamFries().add(newItem);
* </pre>
*
* <p>Objects of the following type(s) are allowed in the list {@link String }
*/
public List<String> getNaamFries() {
if (naamFries == null) {
naamFries = new ArrayList<String>();
}
return this.naamFries;
}
/**
* 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;
}
}