View Javadoc
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: 2019.04.20 at 02:12:22 AM CEST 
6   //
7   
8   
9   package org.opentrafficsim.xml.generated;
10  
11  import java.io.Serializable;
12  import javax.annotation.Generated;
13  import javax.xml.bind.annotation.XmlAccessType;
14  import javax.xml.bind.annotation.XmlAccessorType;
15  import javax.xml.bind.annotation.XmlAttribute;
16  import javax.xml.bind.annotation.XmlSeeAlso;
17  import javax.xml.bind.annotation.XmlType;
18  import javax.xml.bind.annotation.XmlValue;
19  import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
20  import org.djunits.value.vdouble.scalar.Length;
21  import org.opentrafficsim.xml.bindings.LengthAdapter;
22  
23  
24  /**
25   * <p>Java class for PARAMETERLENGTH complex type.
26   * 
27   * <p>The following schema fragment specifies the expected content contained within this class.
28   * 
29   * <pre>
30   * &lt;complexType name="PARAMETERLENGTH"&gt;
31   *   &lt;simpleContent&gt;
32   *     &lt;extension base="&lt;http://www.opentrafficsim.org/ots&gt;LENGTHTYPE"&gt;
33   *       &lt;attribute name="ID" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
34   *     &lt;/extension&gt;
35   *   &lt;/simpleContent&gt;
36   * &lt;/complexType&gt;
37   * </pre>
38   * 
39   * 
40   */
41  @XmlAccessorType(XmlAccessType.FIELD)
42  @XmlType(name = "PARAMETERLENGTH", propOrder = {
43      "value"
44  })
45  @XmlSeeAlso({
46      org.opentrafficsim.xml.generated.MODELTYPE.MODELPARAMETERS.LENGTH.class
47  })
48  @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
49  public class PARAMETERLENGTH implements Serializable
50  {
51  
52      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
53      private final static long serialVersionUID = 10102L;
54      @XmlValue
55      @XmlJavaTypeAdapter(LengthAdapter.class)
56      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
57      protected Length value;
58      @XmlAttribute(name = "ID")
59      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
60      protected String id;
61  
62      /**
63       * Gets the value of the value property.
64       * 
65       * @return
66       *     possible object is
67       *     {@link String }
68       *     
69       */
70      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
71      public Length getValue() {
72          return value;
73      }
74  
75      /**
76       * Sets the value of the value property.
77       * 
78       * @param value
79       *     allowed object is
80       *     {@link String }
81       *     
82       */
83      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
84      public void setValue(Length value) {
85          this.value = value;
86      }
87  
88      /**
89       * Gets the value of the id property.
90       * 
91       * @return
92       *     possible object is
93       *     {@link String }
94       *     
95       */
96      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
97      public String getID() {
98          return id;
99      }
100 
101     /**
102      * Sets the value of the id property.
103      * 
104      * @param value
105      *     allowed object is
106      *     {@link String }
107      *     
108      */
109     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
110     public void setID(String value) {
111         this.id = value;
112     }
113 
114 }