View Javadoc
1   //
2   // This file was generated by the Eclipse Implementation of JAXB, v2.3.7 
3   // See https://eclipse-ee4j.github.io/jaxb-ri 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2024.08.29 at 06:50:16 PM CEST 
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.XmlElement;
16  import javax.xml.bind.annotation.XmlType;
17  import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
18  import org.opentrafficsim.xml.bindings.StringAdapter;
19  import org.opentrafficsim.xml.bindings.types.StringType;
20  
21  
22  /**
23   * <p>Java class for RandomStreamSource complex type.
24   * 
25   * <p>The following schema fragment specifies the expected content contained within this class.
26   * 
27   * <pre>
28   * &lt;complexType name="RandomStreamSource"&gt;
29   *   &lt;complexContent&gt;
30   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
31   *       &lt;choice&gt;
32   *         &lt;element name="Default" type="{http://www.opentrafficsim.org/ots}EmptyType"/&gt;
33   *         &lt;element name="Generation" type="{http://www.opentrafficsim.org/ots}EmptyType"/&gt;
34   *         &lt;element name="Defined" type="{http://www.opentrafficsim.org/ots}string"/&gt;
35   *       &lt;/choice&gt;
36   *     &lt;/restriction&gt;
37   *   &lt;/complexContent&gt;
38   * &lt;/complexType&gt;
39   * </pre>
40   * 
41   * 
42   */
43  @XmlAccessorType(XmlAccessType.FIELD)
44  @XmlType(name = "RandomStreamSource", propOrder = {
45      "_default",
46      "generation",
47      "defined"
48  })
49  @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
50  public class RandomStreamSource
51      implements Serializable
52  {
53  
54      @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
55      private final static long serialVersionUID = 10102L;
56      @XmlElement(name = "Default")
57      @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
58      protected EmptyType _default;
59      @XmlElement(name = "Generation")
60      @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
61      protected EmptyType generation;
62      @XmlElement(name = "Defined", type = String.class)
63      @XmlJavaTypeAdapter(StringAdapter.class)
64      @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
65      protected StringType defined;
66  
67      /**
68       * Gets the value of the default property.
69       * 
70       * @return
71       *     possible object is
72       *     {@link EmptyType }
73       *     
74       */
75      @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
76      public EmptyType getDefault() {
77          return _default;
78      }
79  
80      /**
81       * Sets the value of the default property.
82       * 
83       * @param value
84       *     allowed object is
85       *     {@link EmptyType }
86       *     
87       */
88      @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
89      public void setDefault(EmptyType value) {
90          this._default = value;
91      }
92  
93      /**
94       * Gets the value of the generation property.
95       * 
96       * @return
97       *     possible object is
98       *     {@link EmptyType }
99       *     
100      */
101     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
102     public EmptyType getGeneration() {
103         return generation;
104     }
105 
106     /**
107      * Sets the value of the generation property.
108      * 
109      * @param value
110      *     allowed object is
111      *     {@link EmptyType }
112      *     
113      */
114     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
115     public void setGeneration(EmptyType value) {
116         this.generation = value;
117     }
118 
119     /**
120      * Gets the value of the defined property.
121      * 
122      * @return
123      *     possible object is
124      *     {@link String }
125      *     
126      */
127     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
128     public StringType getDefined() {
129         return defined;
130     }
131 
132     /**
133      * Sets the value of the defined property.
134      * 
135      * @param value
136      *     allowed object is
137      *     {@link String }
138      *     
139      */
140     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
141     public void setDefined(StringType value) {
142         this.defined = value;
143     }
144 
145 }