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.HashMap;
14  import java.util.List;
15  import java.util.Map;
16  import javax.annotation.Generated;
17  import javax.xml.bind.JAXBElement;
18  import javax.xml.bind.annotation.XmlAccessType;
19  import javax.xml.bind.annotation.XmlAccessorType;
20  import javax.xml.bind.annotation.XmlAnyAttribute;
21  import javax.xml.bind.annotation.XmlAnyElement;
22  import javax.xml.bind.annotation.XmlElementRef;
23  import javax.xml.bind.annotation.XmlMixed;
24  import javax.xml.bind.annotation.XmlType;
25  import javax.xml.namespace.QName;
26  import org.w3c.dom.Element;
27  
28  
29  /**
30   * <p>Java class for fallbackType complex type.
31   * 
32   * <p>The following schema fragment specifies the expected content contained within this class.
33   * 
34   * <pre>
35   * &lt;complexType name="fallbackType"&gt;
36   *   &lt;complexContent&gt;
37   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
38   *       &lt;choice maxOccurs="unbounded" minOccurs="0"&gt;
39   *         &lt;element ref="{http://www.w3.org/2001/XInclude}include"/&gt;
40   *         &lt;any processContents='lax' namespace='##other'/&gt;
41   *         &lt;any processContents='lax' namespace=''/&gt;
42   *       &lt;/choice&gt;
43   *       &lt;anyAttribute processContents='lax' namespace='##other'/&gt;
44   *     &lt;/restriction&gt;
45   *   &lt;/complexContent&gt;
46   * &lt;/complexType&gt;
47   * </pre>
48   * 
49   * 
50   */
51  @XmlAccessorType(XmlAccessType.FIELD)
52  @XmlType(name = "fallbackType", namespace = "http://www.w3.org/2001/XInclude", propOrder = {
53      "content"
54  })
55  @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
56  public class FallbackType
57      implements Serializable
58  {
59  
60      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
61      private final static long serialVersionUID = 10102L;
62      @XmlElementRef(name = "include", namespace = "http://www.w3.org/2001/XInclude", type = JAXBElement.class, required = false)
63      @XmlMixed
64      @XmlAnyElement(lax = true)
65      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
66      protected List<Object> content;
67      @XmlAnyAttribute
68      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
69      private Map<QName, String> otherAttributes = new HashMap<QName, String>();
70  
71      /**
72       * Gets the value of the content property.
73       * 
74       * <p>
75       * This accessor method returns a reference to the live list,
76       * not a snapshot. Therefore any modification you make to the
77       * returned list will be present inside the JAXB object.
78       * This is why there is not a <CODE>set</CODE> method for the content property.
79       * 
80       * <p>
81       * For example, to add a new item, do as follows:
82       * <pre>
83       *    getContent().add(newItem);
84       * </pre>
85       * 
86       * 
87       * <p>
88       * Objects of the following type(s) are allowed in the list
89       * {@link JAXBElement }{@code <}{@link IncludeType }{@code >}
90       * {@link Element }
91       * {@link Object }
92       * {@link String }
93       * 
94       * 
95       */
96      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
97      public List<Object> getContent() {
98          if (content == null) {
99              content = new ArrayList<Object>();
100         }
101         return this.content;
102     }
103 
104     /**
105      * Gets a map that contains attributes that aren't bound to any typed property on this class.
106      * 
107      * <p>
108      * the map is keyed by the name of the attribute and 
109      * the value is the string value of the attribute.
110      * 
111      * the map returned by this method is live, and you can add new attribute
112      * by updating the map directly. Because of this design, there's no setter.
113      * 
114      * 
115      * @return
116      *     always non-null
117      */
118     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
119     public Map<QName, String> getOtherAttributes() {
120         return otherAttributes;
121     }
122 
123 }