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.StringAdapter;
20 import org.opentrafficsim.xml.bindings.types.StringType;
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 = "RoadLayout")
44 @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
45 public class RoadLayout
46 extends BasicRoadLayout
47 implements Serializable
48 {
49
50 @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
51 private final static long serialVersionUID = 10102L;
52 @XmlAttribute(name = "Id", required = true)
53 @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
54 protected String id;
55 @XmlAttribute(name = "LinkType", required = true)
56 @XmlJavaTypeAdapter(StringAdapter.class)
57 @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
58 protected StringType linkType;
59
60
61
62
63
64
65
66
67
68 @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
69 public String getId() {
70 return id;
71 }
72
73
74
75
76
77
78
79
80
81 @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
82 public void setId(String value) {
83 this.id = value;
84 }
85
86
87
88
89
90
91
92
93
94 @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
95 public StringType getLinkType() {
96 return linkType;
97 }
98
99
100
101
102
103
104
105
106
107 @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
108 public void setLinkType(StringType value) {
109 this.linkType = value;
110 }
111
112 }