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