1
2
3
4
5
6
7
8
9 package org.opentrafficsim.xml.generated;
10
11 import java.io.Serializable;
12 import java.util.ArrayList;
13 import java.util.List;
14 import javax.annotation.Generated;
15 import javax.xml.bind.annotation.XmlAccessType;
16 import javax.xml.bind.annotation.XmlAccessorType;
17 import javax.xml.bind.annotation.XmlAttribute;
18 import javax.xml.bind.annotation.XmlElement;
19 import javax.xml.bind.annotation.XmlElements;
20 import javax.xml.bind.annotation.XmlRootElement;
21 import javax.xml.bind.annotation.XmlSchemaType;
22 import javax.xml.bind.annotation.XmlType;
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48 @XmlAccessorType(XmlAccessType.FIELD)
49 @XmlType(name = "", propOrder = {
50 "includeOrNODEOrCONNECTOR"
51 })
52 @XmlRootElement(name = "NETWORK")
53 @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
54 public class NETWORK
55 implements Serializable
56 {
57
58 @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
59 private final static long serialVersionUID = 10102L;
60 @XmlElements({
61 @XmlElement(name = "include", namespace = "http://www.w3.org/2001/XInclude", type = IncludeType.class),
62 @XmlElement(name = "NODE", type = NODE.class),
63 @XmlElement(name = "CONNECTOR", type = CONNECTOR.class),
64 @XmlElement(name = "LINK", type = LINK.class)
65 })
66 @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
67 protected List<Serializable> includeOrNODEOrCONNECTOR;
68 @XmlAttribute(name = "base", namespace = "http://www.w3.org/XML/1998/namespace")
69 @XmlSchemaType(name = "anyURI")
70 @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
71 protected String base;
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98 @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
99 public List<Serializable> getIncludeOrNODEOrCONNECTOR() {
100 if (includeOrNODEOrCONNECTOR == null) {
101 includeOrNODEOrCONNECTOR = new ArrayList<Serializable>();
102 }
103 return this.includeOrNODEOrCONNECTOR;
104 }
105
106
107
108
109
110
111
112
113
114 @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
115 public String getBase() {
116 return base;
117 }
118
119
120
121
122
123
124
125
126
127 @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-08-12T04:40:29+02:00", comments = "JAXB RI v2.3.0")
128 public void setBase(String value) {
129 this.base = value;
130 }
131
132 }