VlakOfPuntPropertyType.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.XmlElement;
  12. import javax.xml.bind.annotation.XmlType;

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

  36.   @XmlElement(name = "VlakOfPunt", required = true)
  37.   protected VlakOfPuntType vlakOfPunt;

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

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