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  
20  
21  /**
22   * <p>Java class for PARAMETERDOUBLE complex type.
23   * 
24   * <p>The following schema fragment specifies the expected content contained within this class.
25   * 
26   * <pre>
27   * &lt;complexType name="PARAMETERDOUBLE"&gt;
28   *   &lt;simpleContent&gt;
29   *     &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema&gt;double"&gt;
30   *       &lt;attribute name="ID" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
31   *     &lt;/extension&gt;
32   *   &lt;/simpleContent&gt;
33   * &lt;/complexType&gt;
34   * </pre>
35   * 
36   * 
37   */
38  @XmlAccessorType(XmlAccessType.FIELD)
39  @XmlType(name = "PARAMETERDOUBLE", propOrder = {
40      "value"
41  })
42  @XmlSeeAlso({
43      org.opentrafficsim.xml.generated.MODELTYPE.MODELPARAMETERS.DOUBLE.class
44  })
45  @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
46  public class PARAMETERDOUBLE implements Serializable
47  {
48  
49      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
50      private final static long serialVersionUID = 10102L;
51      @XmlValue
52      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
53      protected double value;
54      @XmlAttribute(name = "ID")
55      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
56      protected String id;
57  
58      /**
59       * Gets the value of the value property.
60       * 
61       */
62      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
63      public double getValue() {
64          return value;
65      }
66  
67      /**
68       * Sets the value of the value property.
69       * 
70       */
71      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
72      public void setValue(double value) {
73          this.value = value;
74      }
75  
76      /**
77       * Gets the value of the id property.
78       * 
79       * @return
80       *     possible object is
81       *     {@link String }
82       *     
83       */
84      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
85      public String getID() {
86          return id;
87      }
88  
89      /**
90       * Sets the value of the id property.
91       * 
92       * @param value
93       *     allowed object is
94       *     {@link String }
95       *     
96       */
97      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
98      public void setID(String value) {
99          this.id = value;
100     }
101 
102 }