package de.fh_giessen.epr.container.v1; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * Dieser Typ repräsentiert eine Liste von EintragsIds. * *

Java class for TEintragsListe complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="TEintragsListe">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="EintragsId" type="{http://www.fh-giessen.de/epr/Container/v1}TEintragsId" maxOccurs="unbounded"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TEintragsListe", propOrder = { "eintragsId" }) public class TEintragsListe { @XmlElement(name = "EintragsId", required = true) protected List eintragsId; /** * Gets the value of the eintragsId property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the eintragsId property. * *

* For example, to add a new item, do as follows: *

     *    getEintragsId().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TEintragsId } * * */ public List getEintragsId() { if (eintragsId == null) { eintragsId = new ArrayList(); } return this.eintragsId; } }