VlakOfMultivlakType.java

  1. //
  2. // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference
  3. // Implementation, v2.2.8-b130911.1802
  4. // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
  5. // Any modifications to this file will be lost upon recompilation of the source schema.
  6. // Generated on: 2016.12.07 at 02:40:39 PM CET
  7. //

  8. package nl.b3p.topnl.top100nl;

  9. import javax.xml.bind.annotation.XmlAccessType;
  10. import javax.xml.bind.annotation.XmlAccessorType;
  11. import javax.xml.bind.annotation.XmlType;

  12. /**
  13.  * Java class for VlakOfMultivlakType complex type.
  14.  *
  15.  * <p>The following schema fragment specifies the expected content contained within this class.
  16.  *
  17.  * <pre>
  18.  * &lt;complexType name="VlakOfMultivlakType">
  19.  *   &lt;complexContent>
  20.  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  21.  *       &lt;choice>
  22.  *         &lt;element name="vlakGeometrie" type="{http://www.opengis.net/gml/3.2}SurfacePropertyType"/>
  23.  *         &lt;element name="multivlakGeometrie" type="{http://www.opengis.net/gml/3.2}MultiSurfacePropertyType"/>
  24.  *       &lt;/choice>
  25.  *     &lt;/restriction>
  26.  *   &lt;/complexContent>
  27.  * &lt;/complexType>
  28.  * </pre>
  29.  */
  30. @XmlAccessorType(XmlAccessType.FIELD)
  31. @XmlType(
  32.     name = "VlakOfMultivlakType",
  33.     namespace = "http://register.geostandaarden.nl/gmlapplicatieschema/top100nl/1.1.0",
  34.     propOrder = {"vlakGeometrie", "multivlakGeometrie"})
  35. public class VlakOfMultivlakType {

  36.   protected SurfacePropertyType vlakGeometrie;
  37.   protected MultiSurfacePropertyType multivlakGeometrie;

  38.   /**
  39.    * Gets the value of the vlakGeometrie property.
  40.    *
  41.    * @return possible object is {@link SurfacePropertyType }
  42.    */
  43.   public SurfacePropertyType getVlakGeometrie() {
  44.     return vlakGeometrie;
  45.   }

  46.   /**
  47.    * Sets the value of the vlakGeometrie property.
  48.    *
  49.    * @param value allowed object is {@link SurfacePropertyType }
  50.    */
  51.   public void setVlakGeometrie(SurfacePropertyType value) {
  52.     this.vlakGeometrie = value;
  53.   }

  54.   /**
  55.    * Gets the value of the multivlakGeometrie property.
  56.    *
  57.    * @return possible object is {@link MultiSurfacePropertyType }
  58.    */
  59.   public MultiSurfacePropertyType getMultivlakGeometrie() {
  60.     return multivlakGeometrie;
  61.   }

  62.   /**
  63.    * Sets the value of the multivlakGeometrie property.
  64.    *
  65.    * @param value allowed object is {@link MultiSurfacePropertyType }
  66.    */
  67.   public void setMultivlakGeometrie(MultiSurfacePropertyType value) {
  68.     this.multivlakGeometrie = value;
  69.   }
  70. }