POSITIONDISTTYPE.java

  1. //
  2. // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
  3. // See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
  4. // Any modifications to this file will be lost upon recompilation of the source schema.
  5. // Generated on: 2020.08.12 at 04:40:29 AM CEST
  6. //


  7. package org.opentrafficsim.xml.generated;

  8. import java.io.Serializable;
  9. import javax.annotation.Generated;
  10. import javax.xml.bind.annotation.XmlAccessType;
  11. import javax.xml.bind.annotation.XmlAccessorType;
  12. import javax.xml.bind.annotation.XmlAttribute;
  13. import javax.xml.bind.annotation.XmlType;


  14. /**
  15.  * <p>Java class for POSITIONDISTTYPE complex type.
  16.  *
  17.  * <p>The following schema fragment specifies the expected content contained within this class.
  18.  *
  19.  * <pre>
  20.  * &lt;complexType name="POSITIONDISTTYPE"&gt;
  21.  *   &lt;complexContent&gt;
  22.  *     &lt;extension base="{http://www.opentrafficsim.org/ots}CONTDISTTYPE"&gt;
  23.  *       &lt;attribute name="POSITIONUNIT" type="{http://www.opentrafficsim.org/ots}POSITIONUNITTYPE" /&gt;
  24.  *     &lt;/extension&gt;
  25.  *   &lt;/complexContent&gt;
  26.  * &lt;/complexType&gt;
  27.  * </pre>
  28.  *
  29.  *
  30.  */
  31. @XmlAccessorType(XmlAccessType.FIELD)
  32. @XmlType(name = "POSITIONDISTTYPE")
  33. @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
  34. public class POSITIONDISTTYPE
  35.     extends CONTDISTTYPE
  36.     implements Serializable
  37. {

  38.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
  39.     private final static long serialVersionUID = 10102L;
  40.     @XmlAttribute(name = "POSITIONUNIT")
  41.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
  42.     protected String positionunit;

  43.     /**
  44.      * Gets the value of the positionunit property.
  45.      *
  46.      * @return
  47.      *     possible object is
  48.      *     {@link String }
  49.      *    
  50.      */
  51.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
  52.     public String getPOSITIONUNIT() {
  53.         return positionunit;
  54.     }

  55.     /**
  56.      * Sets the value of the positionunit property.
  57.      *
  58.      * @param value
  59.      *     allowed object is
  60.      *     {@link String }
  61.      *    
  62.      */
  63.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
  64.     public void setPOSITIONUNIT(String value) {
  65.         this.positionunit = value;
  66.     }

  67. }