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 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.XmlElement;
18  import javax.xml.bind.annotation.XmlRootElement;
19  import javax.xml.bind.annotation.XmlType;
20  
21  
22  /**
23   * <p>Java class for anonymous complex type.
24   * 
25   * <p>The following schema fragment specifies the expected content contained within this class.
26   * 
27   * <pre>
28   * &lt;complexType&gt;
29   *   &lt;complexContent&gt;
30   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
31   *       &lt;sequence&gt;
32   *         &lt;element ref="{http://www.opentrafficsim.org/ots}RoadLayout" maxOccurs="unbounded" minOccurs="0"/&gt;
33   *       &lt;/sequence&gt;
34   *     &lt;/restriction&gt;
35   *   &lt;/complexContent&gt;
36   * &lt;/complexType&gt;
37   * </pre>
38   * 
39   * 
40   */
41  @XmlAccessorType(XmlAccessType.FIELD)
42  @XmlType(name = "", propOrder = {
43      "roadLayout"
44  })
45  @XmlRootElement(name = "RoadLayouts")
46  @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
47  public class RoadLayouts implements Serializable
48  {
49  
50      @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
51      private final static long serialVersionUID = 10102L;
52      @XmlElement(name = "RoadLayout")
53      @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
54      protected List<RoadLayout> roadLayout;
55  
56      /**
57       * Gets the value of the roadLayout property.
58       * 
59       * <p>
60       * This accessor method returns a reference to the live list,
61       * not a snapshot. Therefore any modification you make to the
62       * returned list will be present inside the JAXB object.
63       * This is why there is not a <CODE>set</CODE> method for the roadLayout property.
64       * 
65       * <p>
66       * For example, to add a new item, do as follows:
67       * <pre>
68       *    getRoadLayout().add(newItem);
69       * </pre>
70       * 
71       * 
72       * <p>
73       * Objects of the following type(s) are allowed in the list
74       * {@link RoadLayout }
75       * 
76       * 
77       */
78      @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
79      public List<RoadLayout> getRoadLayout() {
80          if (roadLayout == null) {
81              roadLayout = new ArrayList<RoadLayout>();
82          }
83          return this.roadLayout;
84      }
85  
86  }