DEFAULTANIMATIONTYPE.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.01.24 at 05:08:34 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.XmlElement;
  15. import javax.xml.bind.annotation.XmlType;
  16. import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
  17. import org.djunits.value.vdouble.scalar.Length;
  18. import org.opentrafficsim.xml.bindings.ColorAdapter;
  19. import org.opentrafficsim.xml.bindings.PositiveLengthAdapter;


  20. /**
  21.  * <p>Java class for DEFAULTANIMATIONTYPE complex type.
  22.  *
  23.  * <p>The following schema fragment specifies the expected content contained within this class.
  24.  *
  25.  * <pre>
  26.  * &lt;complexType name="DEFAULTANIMATIONTYPE"&gt;
  27.  *   &lt;complexContent&gt;
  28.  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  29.  *       &lt;sequence&gt;
  30.  *         &lt;element name="LINK" minOccurs="0"&gt;
  31.  *           &lt;complexType&gt;
  32.  *             &lt;complexContent&gt;
  33.  *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  34.  *                 &lt;attribute name="COLOR" use="required" type="{http://www.opentrafficsim.org/ots}COLORTYPE" /&gt;
  35.  *                 &lt;attribute name="WIDTH" type="{http://www.opentrafficsim.org/ots}POSITIVELENGTHTYPE" /&gt;
  36.  *               &lt;/restriction&gt;
  37.  *             &lt;/complexContent&gt;
  38.  *           &lt;/complexType&gt;
  39.  *         &lt;/element&gt;
  40.  *         &lt;element name="LANE" minOccurs="0"&gt;
  41.  *           &lt;complexType&gt;
  42.  *             &lt;complexContent&gt;
  43.  *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  44.  *                 &lt;attribute name="COLOR" use="required" type="{http://www.opentrafficsim.org/ots}COLORTYPE" /&gt;
  45.  *               &lt;/restriction&gt;
  46.  *             &lt;/complexContent&gt;
  47.  *           &lt;/complexType&gt;
  48.  *         &lt;/element&gt;
  49.  *         &lt;element name="STRIPE" minOccurs="0"&gt;
  50.  *           &lt;complexType&gt;
  51.  *             &lt;complexContent&gt;
  52.  *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  53.  *                 &lt;attribute name="COLOR" use="required" type="{http://www.opentrafficsim.org/ots}COLORTYPE" /&gt;
  54.  *               &lt;/restriction&gt;
  55.  *             &lt;/complexContent&gt;
  56.  *           &lt;/complexType&gt;
  57.  *         &lt;/element&gt;
  58.  *         &lt;element name="SHOULDER" minOccurs="0"&gt;
  59.  *           &lt;complexType&gt;
  60.  *             &lt;complexContent&gt;
  61.  *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  62.  *                 &lt;attribute name="COLOR" use="required" type="{http://www.opentrafficsim.org/ots}COLORTYPE" /&gt;
  63.  *               &lt;/restriction&gt;
  64.  *             &lt;/complexContent&gt;
  65.  *           &lt;/complexType&gt;
  66.  *         &lt;/element&gt;
  67.  *         &lt;element name="NOTRAFFICLANE" minOccurs="0"&gt;
  68.  *           &lt;complexType&gt;
  69.  *             &lt;complexContent&gt;
  70.  *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  71.  *                 &lt;attribute name="COLOR" use="required" type="{http://www.opentrafficsim.org/ots}COLORTYPE" /&gt;
  72.  *               &lt;/restriction&gt;
  73.  *             &lt;/complexContent&gt;
  74.  *           &lt;/complexType&gt;
  75.  *         &lt;/element&gt;
  76.  *       &lt;/sequence&gt;
  77.  *     &lt;/restriction&gt;
  78.  *   &lt;/complexContent&gt;
  79.  * &lt;/complexType&gt;
  80.  * </pre>
  81.  *
  82.  *
  83.  */
  84. @XmlAccessorType(XmlAccessType.FIELD)
  85. @XmlType(name = "DEFAULTANIMATIONTYPE", propOrder = {
  86.     "link",
  87.     "lane",
  88.     "stripe",
  89.     "shoulder",
  90.     "notrafficlane"
  91. })
  92. @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  93. public class DEFAULTANIMATIONTYPE
  94.     implements Serializable
  95. {

  96.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  97.     private final static long serialVersionUID = 10102L;
  98.     @XmlElement(name = "LINK")
  99.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  100.     protected DEFAULTANIMATIONTYPE.LINK link;
  101.     @XmlElement(name = "LANE")
  102.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  103.     protected DEFAULTANIMATIONTYPE.LANE lane;
  104.     @XmlElement(name = "STRIPE")
  105.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  106.     protected DEFAULTANIMATIONTYPE.STRIPE stripe;
  107.     @XmlElement(name = "SHOULDER")
  108.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  109.     protected DEFAULTANIMATIONTYPE.SHOULDER shoulder;
  110.     @XmlElement(name = "NOTRAFFICLANE")
  111.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  112.     protected DEFAULTANIMATIONTYPE.NOTRAFFICLANE notrafficlane;

  113.     /**
  114.      * Gets the value of the link property.
  115.      *
  116.      * @return
  117.      *     possible object is
  118.      *     {@link DEFAULTANIMATIONTYPE.LINK }
  119.      *    
  120.      */
  121.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  122.     public DEFAULTANIMATIONTYPE.LINK getLINK() {
  123.         return link;
  124.     }

  125.     /**
  126.      * Sets the value of the link property.
  127.      *
  128.      * @param value
  129.      *     allowed object is
  130.      *     {@link DEFAULTANIMATIONTYPE.LINK }
  131.      *    
  132.      */
  133.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  134.     public void setLINK(DEFAULTANIMATIONTYPE.LINK value) {
  135.         this.link = value;
  136.     }

  137.     /**
  138.      * Gets the value of the lane property.
  139.      *
  140.      * @return
  141.      *     possible object is
  142.      *     {@link DEFAULTANIMATIONTYPE.LANE }
  143.      *    
  144.      */
  145.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  146.     public DEFAULTANIMATIONTYPE.LANE getLANE() {
  147.         return lane;
  148.     }

  149.     /**
  150.      * Sets the value of the lane property.
  151.      *
  152.      * @param value
  153.      *     allowed object is
  154.      *     {@link DEFAULTANIMATIONTYPE.LANE }
  155.      *    
  156.      */
  157.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  158.     public void setLANE(DEFAULTANIMATIONTYPE.LANE value) {
  159.         this.lane = value;
  160.     }

  161.     /**
  162.      * Gets the value of the stripe property.
  163.      *
  164.      * @return
  165.      *     possible object is
  166.      *     {@link DEFAULTANIMATIONTYPE.STRIPE }
  167.      *    
  168.      */
  169.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  170.     public DEFAULTANIMATIONTYPE.STRIPE getSTRIPE() {
  171.         return stripe;
  172.     }

  173.     /**
  174.      * Sets the value of the stripe property.
  175.      *
  176.      * @param value
  177.      *     allowed object is
  178.      *     {@link DEFAULTANIMATIONTYPE.STRIPE }
  179.      *    
  180.      */
  181.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  182.     public void setSTRIPE(DEFAULTANIMATIONTYPE.STRIPE value) {
  183.         this.stripe = value;
  184.     }

  185.     /**
  186.      * Gets the value of the shoulder property.
  187.      *
  188.      * @return
  189.      *     possible object is
  190.      *     {@link DEFAULTANIMATIONTYPE.SHOULDER }
  191.      *    
  192.      */
  193.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  194.     public DEFAULTANIMATIONTYPE.SHOULDER getSHOULDER() {
  195.         return shoulder;
  196.     }

  197.     /**
  198.      * Sets the value of the shoulder property.
  199.      *
  200.      * @param value
  201.      *     allowed object is
  202.      *     {@link DEFAULTANIMATIONTYPE.SHOULDER }
  203.      *    
  204.      */
  205.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  206.     public void setSHOULDER(DEFAULTANIMATIONTYPE.SHOULDER value) {
  207.         this.shoulder = value;
  208.     }

  209.     /**
  210.      * Gets the value of the notrafficlane property.
  211.      *
  212.      * @return
  213.      *     possible object is
  214.      *     {@link DEFAULTANIMATIONTYPE.NOTRAFFICLANE }
  215.      *    
  216.      */
  217.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  218.     public DEFAULTANIMATIONTYPE.NOTRAFFICLANE getNOTRAFFICLANE() {
  219.         return notrafficlane;
  220.     }

  221.     /**
  222.      * Sets the value of the notrafficlane property.
  223.      *
  224.      * @param value
  225.      *     allowed object is
  226.      *     {@link DEFAULTANIMATIONTYPE.NOTRAFFICLANE }
  227.      *    
  228.      */
  229.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  230.     public void setNOTRAFFICLANE(DEFAULTANIMATIONTYPE.NOTRAFFICLANE value) {
  231.         this.notrafficlane = value;
  232.     }


  233.     /**
  234.      * <p>Java class for anonymous complex type.
  235.      *
  236.      * <p>The following schema fragment specifies the expected content contained within this class.
  237.      *
  238.      * <pre>
  239.      * &lt;complexType&gt;
  240.      *   &lt;complexContent&gt;
  241.      *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  242.      *       &lt;attribute name="COLOR" use="required" type="{http://www.opentrafficsim.org/ots}COLORTYPE" /&gt;
  243.      *     &lt;/restriction&gt;
  244.      *   &lt;/complexContent&gt;
  245.      * &lt;/complexType&gt;
  246.      * </pre>
  247.      *
  248.      *
  249.      */
  250.     @XmlAccessorType(XmlAccessType.FIELD)
  251.     @XmlType(name = "")
  252.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  253.     public static class LANE
  254.         implements Serializable
  255.     {

  256.         @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  257.         private final static long serialVersionUID = 10102L;
  258.         @XmlAttribute(name = "COLOR", required = true)
  259.         @XmlJavaTypeAdapter(ColorAdapter.class)
  260.         @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  261.         protected Color color;

  262.         /**
  263.          * Gets the value of the color property.
  264.          *
  265.          * @return
  266.          *     possible object is
  267.          *     {@link String }
  268.          *    
  269.          */
  270.         @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  271.         public Color getCOLOR() {
  272.             return color;
  273.         }

  274.         /**
  275.          * Sets the value of the color property.
  276.          *
  277.          * @param value
  278.          *     allowed object is
  279.          *     {@link String }
  280.          *    
  281.          */
  282.         @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  283.         public void setCOLOR(Color value) {
  284.             this.color = value;
  285.         }

  286.     }


  287.     /**
  288.      * <p>Java class for anonymous complex type.
  289.      *
  290.      * <p>The following schema fragment specifies the expected content contained within this class.
  291.      *
  292.      * <pre>
  293.      * &lt;complexType&gt;
  294.      *   &lt;complexContent&gt;
  295.      *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  296.      *       &lt;attribute name="COLOR" use="required" type="{http://www.opentrafficsim.org/ots}COLORTYPE" /&gt;
  297.      *       &lt;attribute name="WIDTH" type="{http://www.opentrafficsim.org/ots}POSITIVELENGTHTYPE" /&gt;
  298.      *     &lt;/restriction&gt;
  299.      *   &lt;/complexContent&gt;
  300.      * &lt;/complexType&gt;
  301.      * </pre>
  302.      *
  303.      *
  304.      */
  305.     @XmlAccessorType(XmlAccessType.FIELD)
  306.     @XmlType(name = "")
  307.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  308.     public static class LINK
  309.         implements Serializable
  310.     {

  311.         @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  312.         private final static long serialVersionUID = 10102L;
  313.         @XmlAttribute(name = "COLOR", required = true)
  314.         @XmlJavaTypeAdapter(ColorAdapter.class)
  315.         @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  316.         protected Color color;
  317.         @XmlAttribute(name = "WIDTH")
  318.         @XmlJavaTypeAdapter(PositiveLengthAdapter.class)
  319.         @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  320.         protected Length width;

  321.         /**
  322.          * Gets the value of the color property.
  323.          *
  324.          * @return
  325.          *     possible object is
  326.          *     {@link String }
  327.          *    
  328.          */
  329.         @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  330.         public Color getCOLOR() {
  331.             return color;
  332.         }

  333.         /**
  334.          * Sets the value of the color property.
  335.          *
  336.          * @param value
  337.          *     allowed object is
  338.          *     {@link String }
  339.          *    
  340.          */
  341.         @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  342.         public void setCOLOR(Color value) {
  343.             this.color = value;
  344.         }

  345.         /**
  346.          * Gets the value of the width property.
  347.          *
  348.          * @return
  349.          *     possible object is
  350.          *     {@link String }
  351.          *    
  352.          */
  353.         @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  354.         public Length getWIDTH() {
  355.             return width;
  356.         }

  357.         /**
  358.          * Sets the value of the width property.
  359.          *
  360.          * @param value
  361.          *     allowed object is
  362.          *     {@link String }
  363.          *    
  364.          */
  365.         @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  366.         public void setWIDTH(Length value) {
  367.             this.width = value;
  368.         }

  369.     }


  370.     /**
  371.      * <p>Java class for anonymous complex type.
  372.      *
  373.      * <p>The following schema fragment specifies the expected content contained within this class.
  374.      *
  375.      * <pre>
  376.      * &lt;complexType&gt;
  377.      *   &lt;complexContent&gt;
  378.      *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  379.      *       &lt;attribute name="COLOR" use="required" type="{http://www.opentrafficsim.org/ots}COLORTYPE" /&gt;
  380.      *     &lt;/restriction&gt;
  381.      *   &lt;/complexContent&gt;
  382.      * &lt;/complexType&gt;
  383.      * </pre>
  384.      *
  385.      *
  386.      */
  387.     @XmlAccessorType(XmlAccessType.FIELD)
  388.     @XmlType(name = "")
  389.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  390.     public static class NOTRAFFICLANE
  391.         implements Serializable
  392.     {

  393.         @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  394.         private final static long serialVersionUID = 10102L;
  395.         @XmlAttribute(name = "COLOR", required = true)
  396.         @XmlJavaTypeAdapter(ColorAdapter.class)
  397.         @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  398.         protected Color color;

  399.         /**
  400.          * Gets the value of the color property.
  401.          *
  402.          * @return
  403.          *     possible object is
  404.          *     {@link String }
  405.          *    
  406.          */
  407.         @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  408.         public Color getCOLOR() {
  409.             return color;
  410.         }

  411.         /**
  412.          * Sets the value of the color property.
  413.          *
  414.          * @param value
  415.          *     allowed object is
  416.          *     {@link String }
  417.          *    
  418.          */
  419.         @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  420.         public void setCOLOR(Color value) {
  421.             this.color = value;
  422.         }

  423.     }


  424.     /**
  425.      * <p>Java class for anonymous complex type.
  426.      *
  427.      * <p>The following schema fragment specifies the expected content contained within this class.
  428.      *
  429.      * <pre>
  430.      * &lt;complexType&gt;
  431.      *   &lt;complexContent&gt;
  432.      *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  433.      *       &lt;attribute name="COLOR" use="required" type="{http://www.opentrafficsim.org/ots}COLORTYPE" /&gt;
  434.      *     &lt;/restriction&gt;
  435.      *   &lt;/complexContent&gt;
  436.      * &lt;/complexType&gt;
  437.      * </pre>
  438.      *
  439.      *
  440.      */
  441.     @XmlAccessorType(XmlAccessType.FIELD)
  442.     @XmlType(name = "")
  443.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  444.     public static class SHOULDER
  445.         implements Serializable
  446.     {

  447.         @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  448.         private final static long serialVersionUID = 10102L;
  449.         @XmlAttribute(name = "COLOR", required = true)
  450.         @XmlJavaTypeAdapter(ColorAdapter.class)
  451.         @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  452.         protected Color color;

  453.         /**
  454.          * Gets the value of the color property.
  455.          *
  456.          * @return
  457.          *     possible object is
  458.          *     {@link String }
  459.          *    
  460.          */
  461.         @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  462.         public Color getCOLOR() {
  463.             return color;
  464.         }

  465.         /**
  466.          * Sets the value of the color property.
  467.          *
  468.          * @param value
  469.          *     allowed object is
  470.          *     {@link String }
  471.          *    
  472.          */
  473.         @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  474.         public void setCOLOR(Color value) {
  475.             this.color = value;
  476.         }

  477.     }


  478.     /**
  479.      * <p>Java class for anonymous complex type.
  480.      *
  481.      * <p>The following schema fragment specifies the expected content contained within this class.
  482.      *
  483.      * <pre>
  484.      * &lt;complexType&gt;
  485.      *   &lt;complexContent&gt;
  486.      *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  487.      *       &lt;attribute name="COLOR" use="required" type="{http://www.opentrafficsim.org/ots}COLORTYPE" /&gt;
  488.      *     &lt;/restriction&gt;
  489.      *   &lt;/complexContent&gt;
  490.      * &lt;/complexType&gt;
  491.      * </pre>
  492.      *
  493.      *
  494.      */
  495.     @XmlAccessorType(XmlAccessType.FIELD)
  496.     @XmlType(name = "")
  497.     @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  498.     public static class STRIPE
  499.         implements Serializable
  500.     {

  501.         @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  502.         private final static long serialVersionUID = 10102L;
  503.         @XmlAttribute(name = "COLOR", required = true)
  504.         @XmlJavaTypeAdapter(ColorAdapter.class)
  505.         @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  506.         protected Color color;

  507.         /**
  508.          * Gets the value of the color property.
  509.          *
  510.          * @return
  511.          *     possible object is
  512.          *     {@link String }
  513.          *    
  514.          */
  515.         @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  516.         public Color getCOLOR() {
  517.             return color;
  518.         }

  519.         /**
  520.          * Sets the value of the color property.
  521.          *
  522.          * @param value
  523.          *     allowed object is
  524.          *     {@link String }
  525.          *    
  526.          */
  527.         @Generated(value = "com.sun.tools.xjc.Driver", date = "2020-01-24T05:08:34+01:00", comments = "JAXB RI v2.3.0")
  528.         public void setCOLOR(Color value) {
  529.             this.color = value;
  530.         }

  531.     }

  532. }