// // 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; /** *

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

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

 * <complexType name="LinguisticSkillType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="MotherTongueList" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="MotherTongue" type="{http://europass.cedefop.europa.eu/Europass}MotherTongueSkillType" maxOccurs="unbounded" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="ForeignLanguageList" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="ForeignLanguage" type="{http://europass.cedefop.europa.eu/Europass}ForeignLanguageSkillType" maxOccurs="unbounded" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LinguisticSkillType", propOrder = { "motherTongueList", "foreignLanguageList" }) public class LinguisticSkillType { @XmlElement(name = "MotherTongueList") protected LinguisticSkillType.MotherTongueList motherTongueList; @XmlElement(name = "ForeignLanguageList") protected LinguisticSkillType.ForeignLanguageList foreignLanguageList; /** * Ruft den Wert der motherTongueList-Eigenschaft ab. * * @return * possible object is * {@link LinguisticSkillType.MotherTongueList } * */ public LinguisticSkillType.MotherTongueList getMotherTongueList() { return motherTongueList; } /** * Legt den Wert der motherTongueList-Eigenschaft fest. * * @param value * allowed object is * {@link LinguisticSkillType.MotherTongueList } * */ public void setMotherTongueList(LinguisticSkillType.MotherTongueList value) { this.motherTongueList = value; } /** * Ruft den Wert der foreignLanguageList-Eigenschaft ab. * * @return * possible object is * {@link LinguisticSkillType.ForeignLanguageList } * */ public LinguisticSkillType.ForeignLanguageList getForeignLanguageList() { return foreignLanguageList; } /** * Legt den Wert der foreignLanguageList-Eigenschaft fest. * * @param value * allowed object is * {@link LinguisticSkillType.ForeignLanguageList } * */ public void setForeignLanguageList(LinguisticSkillType.ForeignLanguageList value) { this.foreignLanguageList = value; } /** *

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

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

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

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

         *    getForeignLanguage().add(newItem);
         * 
* * *

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

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

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

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

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

         *    getMotherTongue().add(newItem);
         * 
* * *

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