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