Subversion Repositories bacoAlunos

Rev

Rev 1503 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2016.07.28 at 12:03:54 PM WEST
//


package pt.estgp.estgweb.services.courses.xsd;

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.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * <p>Java class for anonymous complex type.
 *
 * <p>The following schema fragment specifies the expected content contained within this class.
 *
 * <pre>
 * &lt;complexType>
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;element name="siges" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         &lt;element name="nome" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         &lt;element name="dep" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         &lt;element name="semestre" maxOccurs="unbounded">
 *           &lt;complexType>
 *             &lt;complexContent>
 *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 &lt;choice>
 *                   &lt;element name="unidade" type="{http://www.estgp.pt/xsd/planoestudos/1.0/}unidadeType" maxOccurs="unbounded"/>
 *                   &lt;element name="perfil" maxOccurs="unbounded">
 *                     &lt;complexType>
 *                       &lt;complexContent>
 *                         &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                           &lt;sequence>
 *                             &lt;element name="unidade" type="{http://www.estgp.pt/xsd/planoestudos/1.0/}unidadeType" maxOccurs="unbounded"/>
 *                           &lt;/sequence>
 *                           &lt;attribute name="nome" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *                         &lt;/restriction>
 *                       &lt;/complexContent>
 *                     &lt;/complexType>
 *                   &lt;/element>
 *                 &lt;/choice>
 *                 &lt;attribute name="id" use="required">
 *                   &lt;simpleType>
 *                     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *                       &lt;enumeration value="S1"/>
 *                       &lt;enumeration value="S2"/>
 *                       &lt;enumeration value="S3"/>
 *                       &lt;enumeration value="S4"/>
 *                       &lt;enumeration value="S5"/>
 *                       &lt;enumeration value="S6"/>
 *                       &lt;enumeration value="S7"/>
 *                       &lt;enumeration value="S8"/>
 *                       &lt;enumeration value="S9"/>
 *                       &lt;enumeration value="S10"/>
 *                       &lt;enumeration value="S11"/>
 *                       &lt;enumeration value="S12"/>
 *                       &lt;enumeration value="A1"/>
 *                       &lt;enumeration value="A2"/>
 *                       &lt;enumeration value="A3"/>
 *                       &lt;enumeration value="A4"/>
 *                       &lt;enumeration value="A5"/>
 *                     &lt;/restriction>
 *                   &lt;/simpleType>
 *                 &lt;/attribute>
 *               &lt;/restriction>
 *             &lt;/complexContent>
 *           &lt;/complexType>
 *         &lt;/element>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 *
 *
 */

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "siges",
    "nome",
    "dep",
    "semestre"
})
@XmlRootElement(name = "curso")
public class Curso {

    @XmlElement(required = true)
    protected 1.5.0/docs/api/java/lang/String.html">String siges;
    @XmlElement(required = true)
    protected 1.5.0/docs/api/java/lang/String.html">String nome;
    @XmlElement(required = true)
    protected 1.5.0/docs/api/java/lang/String.html">String dep;
    @XmlElement(required = true)
    protected List<Curso.Semestre> semestre;

    /**
     * Gets the value of the siges property.
     *
     * @return
     *     possible object is
     *     {@link String }
     *    
     */

    public 1.5.0/docs/api/java/lang/String.html">String getSiges() {
        return siges;
    }

    /**
     * Sets the value of the siges property.
     *
     * @param value
     *     allowed object is
     *     {@link String }
     *    
     */

    public void setSiges(1.5.0/docs/api/java/lang/String.html">String value) {
        this.siges = value;
    }

    /**
     * Gets the value of the nome property.
     *
     * @return
     *     possible object is
     *     {@link String }
     *    
     */

    public 1.5.0/docs/api/java/lang/String.html">String getNome() {
        return nome;
    }

    /**
     * Sets the value of the nome property.
     *
     * @param value
     *     allowed object is
     *     {@link String }
     *    
     */

    public void setNome(1.5.0/docs/api/java/lang/String.html">String value) {
        this.nome = value;
    }

    /**
     * Gets the value of the dep property.
     *
     * @return
     *     possible object is
     *     {@link String }
     *    
     */

    public 1.5.0/docs/api/java/lang/String.html">String getDep() {
        return dep;
    }

    /**
     * Sets the value of the dep property.
     *
     * @param value
     *     allowed object is
     *     {@link String }
     *    
     */

    public void setDep(1.5.0/docs/api/java/lang/String.html">String value) {
        this.dep = value;
    }

    /**
     * Gets the value of the semestre property.
     *
     * <p>
     * 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 <CODE>set</CODE> method for the semestre property.
     *
     * <p>
     * For example, to add a new item, do as follows:
     * <pre>
     *    getSemestre().add(newItem);
     * </pre>
     *
     *
     * <p>
     * Objects of the following type(s) are allowed in the list
     * {@link Curso.Semestre }
     *
     *
     */

    public List<Curso.Semestre> getSemestre() {
        if (semestre == null) {
            semestre = new ArrayList<Curso.Semestre>();
        }
        return this.semestre;
    }


    /**
     * <p>Java class for anonymous complex type.
     *
     * <p>The following schema fragment specifies the expected content contained within this class.
     *
     * <pre>
     * &lt;complexType>
     *   &lt;complexContent>
     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       &lt;choice>
     *         &lt;element name="unidade" type="{http://www.estgp.pt/xsd/planoestudos/1.0/}unidadeType" maxOccurs="unbounded"/>
     *         &lt;element name="perfil" maxOccurs="unbounded">
     *           &lt;complexType>
     *             &lt;complexContent>
     *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *                 &lt;sequence>
     *                   &lt;element name="unidade" type="{http://www.estgp.pt/xsd/planoestudos/1.0/}unidadeType" maxOccurs="unbounded"/>
     *                 &lt;/sequence>
     *                 &lt;attribute name="nome" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
     *               &lt;/restriction>
     *             &lt;/complexContent>
     *           &lt;/complexType>
     *         &lt;/element>
     *       &lt;/choice>
     *       &lt;attribute name="id" use="required">
     *         &lt;simpleType>
     *           &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
     *             &lt;enumeration value="S1"/>
     *             &lt;enumeration value="S2"/>
     *             &lt;enumeration value="S3"/>
     *             &lt;enumeration value="S4"/>
     *             &lt;enumeration value="S5"/>
     *             &lt;enumeration value="S6"/>
     *             &lt;enumeration value="S7"/>
     *             &lt;enumeration value="S8"/>
     *             &lt;enumeration value="S9"/>
     *             &lt;enumeration value="S10"/>
     *             &lt;enumeration value="S11"/>
     *             &lt;enumeration value="S12"/>
     *             &lt;enumeration value="A1"/>
     *             &lt;enumeration value="A2"/>
     *             &lt;enumeration value="A3"/>
     *             &lt;enumeration value="A4"/>
     *             &lt;enumeration value="A5"/>
     *           &lt;/restriction>
     *         &lt;/simpleType>
     *       &lt;/attribute>
     *     &lt;/restriction>
     *   &lt;/complexContent>
     * &lt;/complexType>
     * </pre>
     *
     *
     */

    @XmlAccessorType(XmlAccessType.FIELD)
    @XmlType(name = "", propOrder = {
        "unidade",
        "perfil"
    })
    public static class Semestre {

        protected List<UnidadeType> unidade;
        protected List<Curso.Semestre.Perfil> perfil;
        @XmlAttribute(required = true)
        protected 1.5.0/docs/api/java/lang/String.html">String id;

        /**
         * Gets the value of the unidade property.
         *
         * <p>
         * 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 <CODE>set</CODE> method for the unidade property.
         *
         * <p>
         * For example, to add a new item, do as follows:
         * <pre>
         *    getUnidade().add(newItem);
         * </pre>
         *
         *
         * <p>
         * Objects of the following type(s) are allowed in the list
         * {@link UnidadeType }
         *
         *
         */

        public List<UnidadeType> getUnidade() {
            if (unidade == null) {
                unidade = new ArrayList<UnidadeType>();
            }
            return this.unidade;
        }

        /**
         * Gets the value of the perfil property.
         *
         * <p>
         * 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 <CODE>set</CODE> method for the perfil property.
         *
         * <p>
         * For example, to add a new item, do as follows:
         * <pre>
         *    getPerfil().add(newItem);
         * </pre>
         *
         *
         * <p>
         * Objects of the following type(s) are allowed in the list
         * {@link Curso.Semestre.Perfil }
         *
         *
         */

        public List<Curso.Semestre.Perfil> getPerfil() {
            if (perfil == null) {
                perfil = new ArrayList<Curso.Semestre.Perfil>();
            }
            return this.perfil;
        }

        /**
         * Gets the value of the id property.
         *
         * @return
         *     possible object is
         *     {@link String }
         *    
         */

        public 1.5.0/docs/api/java/lang/String.html">String getId() {
            return id;
        }

        /**
         * Sets the value of the id property.
         *
         * @param value
         *     allowed object is
         *     {@link String }
         *    
         */

        public void setId(1.5.0/docs/api/java/lang/String.html">String value) {
            this.id = value;
        }


        /**
         * <p>Java class for anonymous complex type.
         *
         * <p>The following schema fragment specifies the expected content contained within this class.
         *
         * <pre>
         * &lt;complexType>
         *   &lt;complexContent>
         *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
         *       &lt;sequence>
         *         &lt;element name="unidade" type="{http://www.estgp.pt/xsd/planoestudos/1.0/}unidadeType" maxOccurs="unbounded"/>
         *       &lt;/sequence>
         *       &lt;attribute name="nome" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
         *     &lt;/restriction>
         *   &lt;/complexContent>
         * &lt;/complexType>
         * </pre>
         *
         *
         */

        @XmlAccessorType(XmlAccessType.FIELD)
        @XmlType(name = "", propOrder = {
            "unidade"
        })
        public static class Perfil {

            @XmlElement(required = true)
            protected List<UnidadeType> unidade;
            @XmlAttribute(required = true)
            protected 1.5.0/docs/api/java/lang/String.html">String nome;

            /**
             * Gets the value of the unidade property.
             *
             * <p>
             * 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 <CODE>set</CODE> method for the unidade property.
             *
             * <p>
             * For example, to add a new item, do as follows:
             * <pre>
             *    getUnidade().add(newItem);
             * </pre>
             *
             *
             * <p>
             * Objects of the following type(s) are allowed in the list
             * {@link UnidadeType }
             *
             *
             */

            public List<UnidadeType> getUnidade() {
                if (unidade == null) {
                    unidade = new ArrayList<UnidadeType>();
                }
                return this.unidade;
            }

            /**
             * Gets the value of the nome property.
             *
             * @return
             *     possible object is
             *     {@link String }
             *    
             */

            public 1.5.0/docs/api/java/lang/String.html">String getNome() {
                return nome;
            }

            /**
             * Sets the value of the nome property.
             *
             * @param value
             *     allowed object is
             *     {@link String }
             *    
             */

            public void setNome(1.5.0/docs/api/java/lang/String.html">String value) {
                this.nome = value;
            }

        }

    }

}