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

  36.   protected CurvePropertyType lijnGeometrie;
  37.   protected PointPropertyType puntGeometrie;

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

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

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

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