// // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0-b170531.0717 generiert // Siehe https://jaxb.java.net/ // Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2018.09.30 um 04:14:23 PM CEST // package at.gv.egiz.eid4u.impl.attributes.xjc.europass; 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; /** * * Defines a list of Experiences. * * *

Java-Klasse für ExperienceListType complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="ExperienceListType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Experience" type="{http://europass.cedefop.europa.eu/Europass}ExperienceType" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ExperienceListType", propOrder = { "experience" }) public class ExperienceListType { @XmlElement(name = "Experience") protected List experience; /** * Gets the value of the experience 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 experience property. * *

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

     *    getExperience().add(newItem);
     * 
* * *

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