// // 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 javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * * Contains a list of references to material attached to this XML instance or outside the scope of it, and which enrich or support the learner’s information. * * *

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

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

 * <complexType name="GenericDocumentationType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Heading" type="{http://europass.cedefop.europa.eu/Europass}DocumentationHeadingLabelType" minOccurs="0"/>
 *         <element name="InterDocument" type="{http://europass.cedefop.europa.eu/Europass}InterDocumentDocumentationType" minOccurs="0"/>
 *         <element name="IntraDocument" type="{http://europass.cedefop.europa.eu/Europass}IntraDocumentDocumentationType" minOccurs="0"/>
 *         <element name="ExtraDocument" type="{http://europass.cedefop.europa.eu/Europass}ExtraDocumentDocumentationType" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GenericDocumentationType", propOrder = { "heading", "interDocument", "intraDocument", "extraDocument" }) public class GenericDocumentationType { @XmlElement(name = "Heading") protected DocumentationHeadingLabelType heading; @XmlElement(name = "InterDocument") protected InterDocumentDocumentationType interDocument; @XmlElement(name = "IntraDocument") protected IntraDocumentDocumentationType intraDocument; @XmlElement(name = "ExtraDocument") protected ExtraDocumentDocumentationType extraDocument; /** * Ruft den Wert der heading-Eigenschaft ab. * * @return * possible object is * {@link DocumentationHeadingLabelType } * */ public DocumentationHeadingLabelType getHeading() { return heading; } /** * Legt den Wert der heading-Eigenschaft fest. * * @param value * allowed object is * {@link DocumentationHeadingLabelType } * */ public void setHeading(DocumentationHeadingLabelType value) { this.heading = value; } /** * Ruft den Wert der interDocument-Eigenschaft ab. * * @return * possible object is * {@link InterDocumentDocumentationType } * */ public InterDocumentDocumentationType getInterDocument() { return interDocument; } /** * Legt den Wert der interDocument-Eigenschaft fest. * * @param value * allowed object is * {@link InterDocumentDocumentationType } * */ public void setInterDocument(InterDocumentDocumentationType value) { this.interDocument = value; } /** * Ruft den Wert der intraDocument-Eigenschaft ab. * * @return * possible object is * {@link IntraDocumentDocumentationType } * */ public IntraDocumentDocumentationType getIntraDocument() { return intraDocument; } /** * Legt den Wert der intraDocument-Eigenschaft fest. * * @param value * allowed object is * {@link IntraDocumentDocumentationType } * */ public void setIntraDocument(IntraDocumentDocumentationType value) { this.intraDocument = value; } /** * Ruft den Wert der extraDocument-Eigenschaft ab. * * @return * possible object is * {@link ExtraDocumentDocumentationType } * */ public ExtraDocumentDocumentationType getExtraDocument() { return extraDocument; } /** * Legt den Wert der extraDocument-Eigenschaft fest. * * @param value * allowed object is * {@link ExtraDocumentDocumentationType } * */ public void setExtraDocument(ExtraDocumentDocumentationType value) { this.extraDocument = value; } }