1
2
3
4
5
6
7
8
9 package org.opentrafficsim.xml.generated;
10
11 import javax.annotation.Generated;
12 import javax.xml.bind.annotation.XmlAccessType;
13 import javax.xml.bind.annotation.XmlAccessorType;
14 import javax.xml.bind.annotation.XmlAttribute;
15 import javax.xml.bind.annotation.XmlType;
16 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
17 import org.opentrafficsim.xml.bindings.StripeTypeAdapter;
18 import org.opentrafficsim.xml.bindings.types.StripeType;
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38 @XmlAccessorType(XmlAccessType.FIELD)
39 @XmlType(name = "CSESTRIPE")
40 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
41 public class CSESTRIPE
42 extends CROSSSECTIONELEMENT
43 {
44
45 @XmlAttribute(name = "TYPE", required = true)
46 @XmlJavaTypeAdapter(StripeTypeAdapter.class)
47 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
48 protected StripeType type;
49
50
51
52
53
54
55
56
57
58 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
59 public StripeType getTYPE() {
60 return type;
61 }
62
63
64
65
66
67
68
69
70
71 @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-03-16T06:21:55+01:00", comments = "JAXB RI v2.3.0")
72 public void setTYPE(StripeType value) {
73 this.type = value;
74 }
75
76 }