View Javadoc
1   //
2   // This file was generated by the Eclipse Implementation of JAXB, v2.3.6 
3   // See https://eclipse-ee4j.github.io/jaxb-ri 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2024.05.19 at 12:55:27 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.XmlRootElement;
17  import javax.xml.bind.annotation.XmlType;
18  
19  
20  /**
21   * <p>Java class for anonymous complex type.
22   * 
23   * <p>The following schema fragment specifies the expected content contained within this class.
24   * 
25   * <pre>
26   * &lt;complexType&gt;
27   *   &lt;complexContent&gt;
28   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
29   *       &lt;attribute name="GTUTYPE" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
30   *       &lt;attribute name="DIRECTION" use="required" type="{http://www.opentrafficsim.org/ots}DRIVINGDIRECTIONTYPE" /&gt;
31   *     &lt;/restriction&gt;
32   *   &lt;/complexContent&gt;
33   * &lt;/complexType&gt;
34   * </pre>
35   * 
36   * 
37   */
38  @XmlAccessorType(XmlAccessType.FIELD)
39  @XmlType(name = "")
40  @XmlRootElement(name = "COMPATIBILITY")
41  @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2024-05-19T00:55:27+02:00")
42  public class COMPATIBILITY
43      implements Serializable
44  {
45  
46      @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2024-05-19T00:55:27+02:00")
47      private final static long serialVersionUID = 10102L;
48      @XmlAttribute(name = "GTUTYPE", required = true)
49      @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2024-05-19T00:55:27+02:00")
50      protected String gtutype;
51      @XmlAttribute(name = "DIRECTION", required = true)
52      @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2024-05-19T00:55:27+02:00")
53      protected String direction;
54  
55      /**
56       * Gets the value of the gtutype property.
57       * 
58       * @return
59       *     possible object is
60       *     {@link String }
61       *     
62       */
63      @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2024-05-19T00:55:27+02:00")
64      public String getGTUTYPE() {
65          return gtutype;
66      }
67  
68      /**
69       * Sets the value of the gtutype property.
70       * 
71       * @param value
72       *     allowed object is
73       *     {@link String }
74       *     
75       */
76      @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2024-05-19T00:55:27+02:00")
77      public void setGTUTYPE(String value) {
78          this.gtutype = value;
79      }
80  
81      /**
82       * Gets the value of the direction property.
83       * 
84       * @return
85       *     possible object is
86       *     {@link String }
87       *     
88       */
89      @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2024-05-19T00:55:27+02:00")
90      public String getDIRECTION() {
91          return direction;
92      }
93  
94      /**
95       * Sets the value of the direction property.
96       * 
97       * @param value
98       *     allowed object is
99       *     {@link String }
100      *     
101      */
102     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2024-05-19T00:55:27+02:00")
103     public void setDIRECTION(String value) {
104         this.direction = value;
105     }
106 
107 }