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.XmlType;
17  import javax.xml.bind.annotation.XmlValue;
18  import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
19  import org.djunits.value.vdouble.scalar.Time;
20  import org.opentrafficsim.xml.bindings.TimeAdapter;
21  
22  
23  /**
24   * <p>Java class for LEVELTIMETYPE complex type.
25   * 
26   * <p>The following schema fragment specifies the expected content contained within this class.
27   * 
28   * <pre>
29   * &lt;complexType name="LEVELTIMETYPE"&gt;
30   *   &lt;simpleContent&gt;
31   *     &lt;extension base="&lt;http://www.opentrafficsim.org/ots&gt;LEVELTYPE"&gt;
32   *       &lt;attribute name="TIME" type="{http://www.opentrafficsim.org/ots}TIMETYPE" /&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 = "LEVELTIMETYPE", propOrder = {
42      "value"
43  })
44  @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
45  public class LEVELTIMETYPE
46      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 String value;
54      @XmlAttribute(name = "TIME")
55      @XmlJavaTypeAdapter(TimeAdapter.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 Time time;
58  
59      /**
60       * Gets the value of the value property.
61       * 
62       * @return
63       *     possible object is
64       *     {@link String }
65       *     
66       */
67      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
68      public String getValue() {
69          return value;
70      }
71  
72      /**
73       * Sets the value of the value property.
74       * 
75       * @param value
76       *     allowed object is
77       *     {@link String }
78       *     
79       */
80      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
81      public void setValue(String value) {
82          this.value = value;
83      }
84  
85      /**
86       * Gets the value of the time property.
87       * 
88       * @return
89       *     possible object is
90       *     {@link String }
91       *     
92       */
93      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
94      public Time getTIME() {
95          return time;
96      }
97  
98      /**
99       * Sets the value of the time property.
100      * 
101      * @param value
102      *     allowed object is
103      *     {@link String }
104      *     
105      */
106     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
107     public void setTIME(Time value) {
108         this.time = value;
109     }
110 
111 }