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.adapters.XmlJavaTypeAdapter;
19  import org.opentrafficsim.xml.bindings.StaticFieldNameAdapter;
20  
21  
22  /**
23   * <p>Java class for PARAMETERTYPE complex type.
24   * 
25   * <p>The following schema fragment specifies the expected content contained within this class.
26   * 
27   * <pre>
28   * &lt;complexType name="PARAMETERTYPE"&gt;
29   *   &lt;complexContent&gt;
30   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
31   *       &lt;attribute name="ID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
32   *       &lt;attribute name="FIELD" use="required" type="{http://www.opentrafficsim.org/ots}STATICFIELDNAMETYPE" /&gt;
33   *       &lt;attribute name="DESCRIPTION" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
34   *     &lt;/restriction&gt;
35   *   &lt;/complexContent&gt;
36   * &lt;/complexType&gt;
37   * </pre>
38   * 
39   * 
40   */
41  @XmlAccessorType(XmlAccessType.FIELD)
42  @XmlType(name = "PARAMETERTYPE")
43  @XmlSeeAlso({
44      PARAMETERTYPESTRING.class,
45      PARAMETERTYPEACCELERATION.class,
46      PARAMETERTYPEBOOLEAN.class,
47      PARAMETERTYPECLASS.class,
48      PARAMETERTYPEDOUBLE.class,
49      PARAMETERTYPEFLOAT.class,
50      PARAMETERTYPELONG.class,
51      PARAMETERTYPEDURATION.class,
52      PARAMETERTYPEFRACTION.class,
53      PARAMETERTYPEFREQUENCY.class,
54      PARAMETERTYPEINTEGER.class,
55      PARAMETERTYPELENGTH.class,
56      PARAMETERTYPELINEARDENSITY.class,
57      PARAMETERTYPESPEED.class
58  })
59  @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
60  public class PARAMETERTYPE implements Serializable
61  {
62  
63      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
64      private final static long serialVersionUID = 10102L;
65      @XmlAttribute(name = "ID", required = true)
66      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
67      protected String id;
68      @XmlAttribute(name = "FIELD", required = true)
69      @XmlJavaTypeAdapter(StaticFieldNameAdapter.class)
70      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
71      protected Object field;
72      @XmlAttribute(name = "DESCRIPTION")
73      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
74      protected String description;
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     /**
103      * Gets the value of the field property.
104      * 
105      * @return
106      *     possible object is
107      *     {@link String }
108      *     
109      */
110     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
111     public Object getFIELD() {
112         return field;
113     }
114 
115     /**
116      * Sets the value of the field property.
117      * 
118      * @param value
119      *     allowed object is
120      *     {@link String }
121      *     
122      */
123     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
124     public void setFIELD(Object value) {
125         this.field = value;
126     }
127 
128     /**
129      * Gets the value of the description property.
130      * 
131      * @return
132      *     possible object is
133      *     {@link String }
134      *     
135      */
136     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
137     public String getDESCRIPTION() {
138         return description;
139     }
140 
141     /**
142      * Sets the value of the description property.
143      * 
144      * @param value
145      *     allowed object is
146      *     {@link String }
147      *     
148      */
149     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
150     public void setDESCRIPTION(String value) {
151         this.description = value;
152     }
153 
154 }