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}LINKTYPE" maxOccurs="unbounded" minOccurs="0"/&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      "linktype"
47  })
48  @XmlRootElement(name = "LINKTYPES")
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 LINKTYPES implements Serializable
51  {
52  
53      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
54      private final static long serialVersionUID = 10102L;
55      @XmlElement(name = "LINKTYPE")
56      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
57      protected List<LINKTYPE> linktype;
58      @XmlAttribute(name = "base", namespace = "http://www.w3.org/XML/1998/namespace")
59      @XmlSchemaType(name = "anyURI")
60      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
61      protected String base;
62  
63      /**
64       * Gets the value of the linktype property.
65       * 
66       * <p>
67       * This accessor method returns a reference to the live list,
68       * not a snapshot. Therefore any modification you make to the
69       * returned list will be present inside the JAXB object.
70       * This is why there is not a <CODE>set</CODE> method for the linktype property.
71       * 
72       * <p>
73       * For example, to add a new item, do as follows:
74       * <pre>
75       *    getLINKTYPE().add(newItem);
76       * </pre>
77       * 
78       * 
79       * <p>
80       * Objects of the following type(s) are allowed in the list
81       * {@link LINKTYPE }
82       * 
83       * 
84       */
85      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
86      public List<LINKTYPE> getLINKTYPE() {
87          if (linktype == null) {
88              linktype = new ArrayList<LINKTYPE>();
89          }
90          return this.linktype;
91      }
92  
93      /**
94       * Gets the value of the base property.
95       * 
96       * @return
97       *     possible object is
98       *     {@link String }
99       *     
100      */
101     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
102     public String getBase() {
103         return base;
104     }
105 
106     /**
107      * Sets the value of the base property.
108      * 
109      * @param value
110      *     allowed object is
111      *     {@link String }
112      *     
113      */
114     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
115     public void setBase(String value) {
116         this.base = value;
117     }
118 
119 }