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 javax.annotation.Generated;
13  import javax.xml.bind.annotation.XmlAccessType;
14  import javax.xml.bind.annotation.XmlAccessorType;
15  import javax.xml.bind.annotation.XmlAttribute;
16  import javax.xml.bind.annotation.XmlType;
17  
18  
19  /**
20   * <p>Java class for MODELIDREFERRALTYPE complex type.
21   * 
22   * <p>The following schema fragment specifies the expected content contained within this class.
23   * 
24   * <pre>
25   * &lt;complexType name="MODELIDREFERRALTYPE"&gt;
26   *   &lt;complexContent&gt;
27   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
28   *       &lt;attribute name="ID" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
29   *       &lt;attribute name="MODELID" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
30   *     &lt;/restriction&gt;
31   *   &lt;/complexContent&gt;
32   * &lt;/complexType&gt;
33   * </pre>
34   * 
35   * 
36   */
37  @XmlAccessorType(XmlAccessType.FIELD)
38  @XmlType(name = "MODELIDREFERRALTYPE")
39  @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
40  public class MODELIDREFERRALTYPE
41      implements Serializable
42  {
43  
44      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
45      private final static long serialVersionUID = 10102L;
46      @XmlAttribute(name = "ID")
47      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
48      protected String id;
49      @XmlAttribute(name = "MODELID")
50      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
51      protected String modelid;
52  
53      /**
54       * Gets the value of the id property.
55       * 
56       * @return
57       *     possible object is
58       *     {@link String }
59       *     
60       */
61      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
62      public String getID() {
63          return id;
64      }
65  
66      /**
67       * Sets the value of the id property.
68       * 
69       * @param value
70       *     allowed object is
71       *     {@link String }
72       *     
73       */
74      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
75      public void setID(String value) {
76          this.id = value;
77      }
78  
79      /**
80       * Gets the value of the modelid property.
81       * 
82       * @return
83       *     possible object is
84       *     {@link String }
85       *     
86       */
87      @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
88      public String getMODELID() {
89          return modelid;
90      }
91  
92      /**
93       * Sets the value of the modelid property.
94       * 
95       * @param value
96       *     allowed object is
97       *     {@link String }
98       *     
99       */
100     @Generated(value = "com.sun.tools.xjc.Driver", date = "2019-04-20T02:12:22+02:00", comments = "JAXB RI v2.3.0")
101     public void setMODELID(String value) {
102         this.modelid = value;
103     }
104 
105 }