LinkTypes.java

  1. //
  2. // This file was generated by the Eclipse Implementation of JAXB, v2.3.7
  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 03:25:58 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 ref="{http://www.opentrafficsim.org/ots}LinkType" maxOccurs="unbounded" minOccurs="0"/&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.     "linkType"
  39. })
  40. @XmlRootElement(name = "LinkTypes")
  41. @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-05-19T03:25:58+02:00")
  42. public class LinkTypes implements Serializable
  43. {

  44.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-05-19T03:25:58+02:00")
  45.     private final static long serialVersionUID = 10102L;
  46.     @XmlElement(name = "LinkType")
  47.     @Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-05-19T03:25:58+02:00")
  48.     protected List<LinkType> linkType;

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

  78. }