View Javadoc
1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
3   // See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a> 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2019.04.20 at 02:12:22 AM CEST 
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.XmlRootElement;
20  import javax.xml.bind.annotation.XmlSchemaType;
21  import javax.xml.bind.annotation.XmlType;
22  
23  
24  /**
25   * <p>Java class for anonymous complex type.
26   * 
27   * <p>The following schema fragment specifies the expected content contained within this class.
28   * 
29   * <pre>
30   * &lt;complexType&gt;
31   *   &lt;complexContent&gt;
32   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
33   *       &lt;sequence&gt;
34   *         &lt;element ref="{http://www.opentrafficsim.org/ots}RANDOMSTREAM" maxOccurs="unbounded"/&gt;
35   *       &lt;/sequence&gt;
36   *       &lt;attribute ref="{http://www.w3.org/XML/1998/namespace}base"/&gt;
37   *     &lt;/restriction&gt;
38   *   &lt;/complexContent&gt;
39   * &lt;/complexType&gt;
40   * </pre>
41   * 
42   * 
43   */
44  @XmlAccessorType(XmlAccessType.FIELD)
45  @XmlType(name = "", propOrder = {
46      "randomstream"
47  })
48  @XmlRootElement(name = "RANDOMSTREAMS")
49  @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
50  public class RANDOMSTREAMS
51      implements Serializable
52  {
53  
54      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
55      private final static long serialVersionUID = 10102L;
56      @XmlElement(name = "RANDOMSTREAM", required = true)
57      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
58      protected List<RANDOMSTREAM> randomstream;
59      @XmlAttribute(name = "base", namespace = "http://www.w3.org/XML/1998/namespace")
60      @XmlSchemaType(name = "anyURI")
61      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
62      protected String base;
63  
64      /**
65       * Gets the value of the randomstream property.
66       * 
67       * <p>
68       * This accessor method returns a reference to the live list,
69       * not a snapshot. Therefore any modification you make to the
70       * returned list will be present inside the JAXB object.
71       * This is why there is not a <CODE>set</CODE> method for the randomstream property.
72       * 
73       * <p>
74       * For example, to add a new item, do as follows:
75       * <pre>
76       *    getRANDOMSTREAM().add(newItem);
77       * </pre>
78       * 
79       * 
80       * <p>
81       * Objects of the following type(s) are allowed in the list
82       * {@link RANDOMSTREAM }
83       * 
84       * 
85       */
86      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
87      public List<RANDOMSTREAM> getRANDOMSTREAM() {
88          if (randomstream == null) {
89              randomstream = new ArrayList<RANDOMSTREAM>();
90          }
91          return this.randomstream;
92      }
93  
94      /**
95       * Gets the value of the base property.
96       * 
97       * @return
98       *     possible object is
99       *     {@link String }
100      *     
101      */
102     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
103     public String getBase() {
104         return base;
105     }
106 
107     /**
108      * Sets the value of the base property.
109      * 
110      * @param value
111      *     allowed object is
112      *     {@link String }
113      *     
114      */
115     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
116     public void setBase(String value) {
117         this.base = value;
118     }
119 
120 }