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