1   
2   
3   
4   
5   
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  import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
19  import org.opentrafficsim.xml.bindings.DrivingDirectionAdapter;
20  import org.opentrafficsim.xml.bindings.types.DrivingDirectionType;
21  
22  
23  
24  
25  
26  
27  
28  
29  
30  
31  
32  
33  
34  
35  
36  
37  
38  
39  
40  
41  @XmlAccessorType(XmlAccessType.FIELD)
42  @XmlType(name = "")
43  @XmlRootElement(name = "COMPATIBILITY")
44  @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-23T12:43:16+01:00", comments = "JAXB RI v2.3.0")
45  public class COMPATIBILITY
46      implements Serializable
47  {
48  
49      @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-23T12:43:16+01:00", comments = "JAXB RI v2.3.0")
50      private final static long serialVersionUID = 10102L;
51      @XmlAttribute(name = "GTUTYPE", required = true)
52      @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-23T12:43:16+01:00", comments = "JAXB RI v2.3.0")
53      protected String gtutype;
54      @XmlAttribute(name = "DIRECTION", required = true)
55      @XmlJavaTypeAdapter(DrivingDirectionAdapter.class)
56      @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-23T12:43:16+01:00", comments = "JAXB RI v2.3.0")
57      protected DrivingDirectionType direction;
58  
59      
60  
61  
62  
63  
64  
65  
66  
67      @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-23T12:43:16+01:00", comments = "JAXB RI v2.3.0")
68      public String getGTUTYPE() {
69          return gtutype;
70      }
71  
72      
73  
74  
75  
76  
77  
78  
79  
80      @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-23T12:43:16+01:00", comments = "JAXB RI v2.3.0")
81      public void setGTUTYPE(String value) {
82          this.gtutype = value;
83      }
84  
85      
86  
87  
88  
89  
90  
91  
92  
93      @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-23T12:43:16+01:00", comments = "JAXB RI v2.3.0")
94      public DrivingDirectionType getDIRECTION() {
95          return direction;
96      }
97  
98      
99  
100 
101 
102 
103 
104 
105 
106     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-23T12:43:16+01:00", comments = "JAXB RI v2.3.0")
107     public void setDIRECTION(DrivingDirectionType value) {
108         this.direction = value;
109     }
110 
111 }