// // 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.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; import javax.xml.datatype.XMLGregorianCalendar; /** * Local grade * *

Java class for LocalGradeType complex type. * *

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

 * <complexType name="LocalGradeType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="AcademicYear" type="{urn:crue:academic:xsd:language:diplomasupplement}AcademicYearType"/>
 *         <element name="DateIssued" type="{urn:crue:academic:xsd:language:diplomasupplement}DateType" minOccurs="0"/>
 *         <element name="Grade" type="{urn:crue:academic:xsd:language:diplomasupplement}PlainTextType"/>
 *         <element name="Source" minOccurs="0">
 *           <complexType>
 *             <simpleContent>
 *               <extension base="<urn:crue:academic:xsd:language:diplomasupplement>PlainTextType">
 *                 <attribute name="source" use="required" type="{urn:crue:academic:xsd:language:diplomasupplement}SourceGradeType" />
 *               </extension>
 *             </simpleContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LocalGradeType", propOrder = { "academicYear", "dateIssued", "grade", "source" }) public class LocalGradeType { @XmlElement(name = "AcademicYear", required = true) protected String academicYear; @XmlElement(name = "DateIssued") protected XMLGregorianCalendar dateIssued; @XmlElement(name = "Grade", required = true) protected String grade; @XmlElement(name = "Source") protected LocalGradeType.Source source; /** * Gets the value of the academicYear property. * * @return * possible object is * {@link String } * */ public String getAcademicYear() { return academicYear; } /** * Sets the value of the academicYear property. * * @param value * allowed object is * {@link String } * */ public void setAcademicYear(String value) { this.academicYear = value; } /** * Gets the value of the dateIssued property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getDateIssued() { return dateIssued; } /** * Sets the value of the dateIssued property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setDateIssued(XMLGregorianCalendar value) { this.dateIssued = value; } /** * Gets the value of the grade property. * * @return * possible object is * {@link String } * */ public String getGrade() { return grade; } /** * Sets the value of the grade property. * * @param value * allowed object is * {@link String } * */ public void setGrade(String value) { this.grade = value; } /** * Gets the value of the source property. * * @return * possible object is * {@link LocalGradeType.Source } * */ public LocalGradeType.Source getSource() { return source; } /** * Sets the value of the source property. * * @param value * allowed object is * {@link LocalGradeType.Source } * */ public void setSource(LocalGradeType.Source value) { this.source = value; } /** *

Java class for anonymous complex type. * *

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

     * <complexType>
     *   <simpleContent>
     *     <extension base="<urn:crue:academic:xsd:language:diplomasupplement>PlainTextType">
     *       <attribute name="source" use="required" type="{urn:crue:academic:xsd:language:diplomasupplement}SourceGradeType" />
     *     </extension>
     *   </simpleContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "value" }) public static class Source { @XmlValue protected String value; @XmlAttribute(name = "source", required = true) protected SourceGradeType source; /** * 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 source property. * * @return * possible object is * {@link SourceGradeType } * */ public SourceGradeType getSource() { return source; } /** * Sets the value of the source property. * * @param value * allowed object is * {@link SourceGradeType } * */ public void setSource(SourceGradeType value) { this.source = value; } } }