// // 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:26:29 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.XmlAttribute; import javax.xml.bind.annotation.XmlType; /** *

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

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

 * <complexType name="EuropassDocumentReferenceType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="ref" type="{http://europass.cedefop.europa.eu/Europass}DocumentTypeType" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EuropassDocumentReferenceType") public class EuropassDocumentReferenceType { @XmlAttribute(name = "ref") protected DocumentTypeType ref; /** * Ruft den Wert der ref-Eigenschaft ab. * * @return * possible object is * {@link DocumentTypeType } * */ public DocumentTypeType getRef() { return ref; } /** * Legt den Wert der ref-Eigenschaft fest. * * @param value * allowed object is * {@link DocumentTypeType } * */ public void setRef(DocumentTypeType value) { this.ref = value; } }