// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2014.04.12 at 12:22:50 PM GMT // package eu.stork.peps.complex.attributes.crue.academic.xsd.language.diplomasupplement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; /** * Language of instruction * *

* Java class for CourseUnitLanguageOfInstructionType complex type. * *

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

 * <complexType name="CourseUnitLanguageOfInstructionType">
 *   <simpleContent>
 *     <extension base="<urn:crue:academic:xsd:language:diplomasupplement>PlainTextType">
 *       <attribute name="language" use="required" type="{urn:crue:academic:xsd:language:diplomasupplement}LanguageType" />
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CourseUnitLanguageOfInstructionType", propOrder = { "value" }) public class CourseUnitLanguageOfInstructionType { @XmlValue protected String value; @XmlAttribute(name = "language", required = true) protected LanguageType language; /** * Plain text constraint * * Non empty text * * @return possible object is {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the language property. * * @return possible object is {@link LanguageType } * */ public LanguageType getLanguage() { return language; } /** * Sets the value of the language property. * * @param value * allowed object is {@link LanguageType } * */ public void setLanguage(LanguageType value) { this.language = value; } }