GTUCOLORERS.java

  1. //
  2. // This file was generated by the Eclipse Implementation of JAXB, v2.3.6
  3. // See https://eclipse-ee4j.github.io/jaxb-ri
  4. // Any modifications to this file will be lost upon recompilation of the source schema.
  5. // Generated on: 2024.05.19 at 12:55:27 AM CEST
  6. //


  7. package org.opentrafficsim.xml.generated;

  8. import java.io.Serializable;
  9. import java.util.ArrayList;
  10. import java.util.List;
  11. import javax.annotation.Generated;
  12. import javax.xml.bind.annotation.XmlAccessType;
  13. import javax.xml.bind.annotation.XmlAccessorType;
  14. import javax.xml.bind.annotation.XmlElement;
  15. import javax.xml.bind.annotation.XmlRootElement;
  16. import javax.xml.bind.annotation.XmlType;


  17. /**
  18.  * <p>Java class for anonymous complex type.
  19.  *
  20.  * <p>The following schema fragment specifies the expected content contained within this class.
  21.  *
  22.  * <pre>
  23.  * &lt;complexType&gt;
  24.  *   &lt;complexContent&gt;
  25.  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  26.  *       &lt;sequence&gt;
  27.  *         &lt;element name="GTUCOLORER" type="{http://www.opentrafficsim.org/ots}GTUCOLORERTYPE" maxOccurs="unbounded"/&gt;
  28.  *       &lt;/sequence&gt;
  29.  *     &lt;/restriction&gt;
  30.  *   &lt;/complexContent&gt;
  31.  * &lt;/complexType&gt;
  32.  * </pre>
  33.  *
  34.  *
  35.  */
  36. @XmlAccessorType(XmlAccessType.FIELD)
  37. @XmlType(name = "", propOrder = {
  38.     "gtucolorer"
  39. })
  40. @XmlRootElement(name = "GTUCOLORERS")
  41. @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2024-05-19T00:55:27+02:00")
  42. public class GTUCOLORERS
  43.     implements Serializable
  44. {

  45.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2024-05-19T00:55:27+02:00")
  46.     private final static long serialVersionUID = 10102L;
  47.     @XmlElement(name = "GTUCOLORER", required = true)
  48.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2024-05-19T00:55:27+02:00")
  49.     protected List<GTUCOLORERTYPE> gtucolorer;

  50.     /**
  51.      * Gets the value of the gtucolorer property.
  52.      *
  53.      * <p>
  54.      * This accessor method returns a reference to the live list,
  55.      * not a snapshot. Therefore any modification you make to the
  56.      * returned list will be present inside the JAXB object.
  57.      * This is why there is not a <CODE>set</CODE> method for the gtucolorer property.
  58.      *
  59.      * <p>
  60.      * For example, to add a new item, do as follows:
  61.      * <pre>
  62.      *    getGTUCOLORER().add(newItem);
  63.      * </pre>
  64.      *
  65.      *
  66.      * <p>
  67.      * Objects of the following type(s) are allowed in the list
  68.      * {@link GTUCOLORERTYPE }
  69.      *
  70.      *
  71.      */
  72.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.6", date = "2024-05-19T00:55:27+02:00")
  73.     public List<GTUCOLORERTYPE> getGTUCOLORER() {
  74.         if (gtucolorer == null) {
  75.             gtucolorer = new ArrayList<GTUCOLORERTYPE>();
  76.         }
  77.         return this.gtucolorer;
  78.     }

  79. }