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