LANETYPEANIMATIONTYPE.java

  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. package org.opentrafficsim.xml.generated;

  8. import java.awt.Color;
  9. import java.io.Serializable;
  10. import javax.annotation.Generated;
  11. import javax.xml.bind.annotation.XmlAccessType;
  12. import javax.xml.bind.annotation.XmlAccessorType;
  13. import javax.xml.bind.annotation.XmlAttribute;
  14. import javax.xml.bind.annotation.XmlType;
  15. import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
  16. import org.opentrafficsim.xml.bindings.ColorAdapter;


  17. /**
  18.  * <p>Java class for LANETYPEANIMATIONTYPE complex type.
  19.  *
  20.  * <p>The following schema fragment specifies the expected content contained within this class.
  21.  *
  22.  * <pre>
  23.  * &lt;complexType name="LANETYPEANIMATIONTYPE"&gt;
  24.  *   &lt;complexContent&gt;
  25.  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  26.  *       &lt;attribute name="ID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
  27.  *       &lt;attribute name="COLOR" use="required" type="{http://www.opentrafficsim.org/ots}COLORTYPE" /&gt;
  28.  *     &lt;/restriction&gt;
  29.  *   &lt;/complexContent&gt;
  30.  * &lt;/complexType&gt;
  31.  * </pre>
  32.  *
  33.  *
  34.  */
  35. @XmlAccessorType(XmlAccessType.FIELD)
  36. @XmlType(name = "LANETYPEANIMATIONTYPE")
  37. @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
  38. public class LANETYPEANIMATIONTYPE
  39.     implements Serializable
  40. {

  41.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
  42.     private final static long serialVersionUID = 10102L;
  43.     @XmlAttribute(name = "ID", required = true)
  44.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
  45.     protected String id;
  46.     @XmlAttribute(name = "COLOR", required = true)
  47.     @XmlJavaTypeAdapter(ColorAdapter.class)
  48.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
  49.     protected Color color;

  50.     /**
  51.      * Gets the value of the id property.
  52.      *
  53.      * @return
  54.      *     possible object is
  55.      *     {@link String }
  56.      *    
  57.      */
  58.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
  59.     public String getID() {
  60.         return id;
  61.     }

  62.     /**
  63.      * Sets the value of the id property.
  64.      *
  65.      * @param value
  66.      *     allowed object is
  67.      *     {@link String }
  68.      *    
  69.      */
  70.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
  71.     public void setID(String value) {
  72.         this.id = value;
  73.     }

  74.     /**
  75.      * Gets the value of the color property.
  76.      *
  77.      * @return
  78.      *     possible object is
  79.      *     {@link String }
  80.      *    
  81.      */
  82.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
  83.     public Color getCOLOR() {
  84.         return color;
  85.     }

  86.     /**
  87.      * Sets the value of the color property.
  88.      *
  89.      * @param value
  90.      *     allowed object is
  91.      *     {@link String }
  92.      *    
  93.      */
  94.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-11-01T07:11:19+01:00", comments = "JAXB RI v2.3.0")
  95.     public void setCOLOR(Color value) {
  96.         this.color = value;
  97.     }

  98. }