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.XmlSeeAlso;
17 import javax.xml.bind.annotation.XmlType;
18 import javax.xml.bind.annotation.XmlValue;
19 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
20 import org.opentrafficsim.xml.bindings.FractionAdapter;
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40 @XmlAccessorType(XmlAccessType.FIELD)
41 @XmlType(name = "PARAMETERFRACTION", propOrder = {
42 "value"
43 })
44 @XmlSeeAlso({
45 org.opentrafficsim.xml.generated.MODELTYPE.MODELPARAMETERS.FRACTION.class
46 })
47 @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
48 public class PARAMETERFRACTION implements Serializable
49 {
50
51 @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
52 private final static long serialVersionUID = 10102L;
53 @XmlValue
54 @XmlJavaTypeAdapter(FractionAdapter.class)
55 @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
56 protected Double value;
57 @XmlAttribute(name = "ID")
58 @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
59 protected String id;
60
61
62
63
64
65
66
67
68
69 @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
70 public Double getValue() {
71 return value;
72 }
73
74
75
76
77
78
79
80
81
82 @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
83 public void setValue(Double value) {
84 this.value = value;
85 }
86
87
88
89
90
91
92
93
94
95 @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
96 public String getID() {
97 return id;
98 }
99
100
101
102
103
104
105
106
107
108 @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
109 public void setID(String value) {
110 this.id = value;
111 }
112
113 }