Subversion Repositories bacoAlunos

Rev

Rev 1503 | Rev 1505 | 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.29 at 04:29:45 PM WEST
//


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

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;


/**
 * <p>Java class for unidadeType complex type.
 *
 * <p>The following schema fragment specifies the expected content contained within this class.
 *
 * <pre>
 * &lt;complexType name="unidadeType">
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;element name="urlFichaCurricular" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         &lt;element name="urlUnidadeCurricular" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         &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="totalHoras" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         &lt;element name="horasContacto">
 *           &lt;complexType>
 *             &lt;complexContent>
 *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 &lt;sequence>
 *                   &lt;element name="T" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *                   &lt;element name="TP" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *                   &lt;element name="P" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *                   &lt;element name="PL" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *                   &lt;element name="PD" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *                   &lt;element name="OT" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *                   &lt;element name="E" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *                   &lt;element name="S" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *                   &lt;element name="TC" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *                   &lt;element name="O" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *                 &lt;/sequence>
 *               &lt;/restriction>
 *             &lt;/complexContent>
 *           &lt;/complexType>
 *         &lt;/element>
 *         &lt;element name="ECTS" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         &lt;element name="obs" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       &lt;/sequence>
 *       &lt;attribute name="siges" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 *
 *
 */

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "unidadeType", propOrder = {
    "urlFichaCurricular",
    "urlUnidadeCurricular",
    "nome",
    "dep",
    "totalHoras",
    "horasContacto",
    "ects",
    "obs"
})
public class UnidadeType {

    protected 1.5.0/docs/api/java/lang/String.html">String urlFichaCurricular;
    protected 1.5.0/docs/api/java/lang/String.html">String urlUnidadeCurricular;
    @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;
    protected int totalHoras;
    @XmlElement(required = true)
    protected UnidadeType.HorasContacto horasContacto;
    @XmlElement(name = "ECTS", required = true)
    protected 1.5.0/docs/api/java/lang/String.html">String ects;
    @XmlElement(required = true)
    protected 1.5.0/docs/api/java/lang/String.html">String obs;
    @XmlAttribute
    protected 1.5.0/docs/api/java/lang/String.html">String siges;

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

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

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

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

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

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

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

    public void setUrlUnidadeCurricular(1.5.0/docs/api/java/lang/String.html">String value) {
        this.urlUnidadeCurricular = 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 totalHoras property.
     *
     */

    public int getTotalHoras() {
        return totalHoras;
    }

    /**
     * Sets the value of the totalHoras property.
     *
     */

    public void setTotalHoras(int value) {
        this.totalHoras = value;
    }

    /**
     * Gets the value of the horasContacto property.
     *
     * @return
     *     possible object is
     *     {@link UnidadeType.HorasContacto }
     *    
     */

    public UnidadeType.HorasContacto getHorasContacto() {
        return horasContacto;
    }

    /**
     * Sets the value of the horasContacto property.
     *
     * @param value
     *     allowed object is
     *     {@link UnidadeType.HorasContacto }
     *    
     */

    public void setHorasContacto(UnidadeType.HorasContacto value) {
        this.horasContacto = value;
    }

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

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

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

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

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

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

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

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

    /**
     * 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;
    }


    /**
     * <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="T" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
     *         &lt;element name="TP" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
     *         &lt;element name="P" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
     *         &lt;element name="PL" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
     *         &lt;element name="PD" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
     *         &lt;element name="OT" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
     *         &lt;element name="E" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
     *         &lt;element name="S" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
     *         &lt;element name="TC" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
     *         &lt;element name="O" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
     *       &lt;/sequence>
     *     &lt;/restriction>
     *   &lt;/complexContent>
     * &lt;/complexType>
     * </pre>
     *
     *
     */

    @XmlAccessorType(XmlAccessType.FIELD)
    @XmlType(name = "", propOrder = {
        "t",
        "tp",
        "p",
        "pl",
        "pd",
        "ot",
        "e",
        "s",
        "tc",
        "o"
    })
    public static class HorasContacto {

        @XmlElement(name = "T")
        protected 1.5.0/docs/api/java/lang/Integer.html">Integer t;
        @XmlElement(name = "TP")
        protected 1.5.0/docs/api/java/lang/Integer.html">Integer tp;
        @XmlElement(name = "P")
        protected 1.5.0/docs/api/java/lang/Integer.html">Integer p;
        @XmlElement(name = "PL")
        protected 1.5.0/docs/api/java/lang/Integer.html">Integer pl;
        @XmlElement(name = "PD")
        protected 1.5.0/docs/api/java/lang/Integer.html">Integer pd;
        @XmlElement(name = "OT")
        protected 1.5.0/docs/api/java/lang/Integer.html">Integer ot;
        @XmlElement(name = "E")
        protected 1.5.0/docs/api/java/lang/Integer.html">Integer e;
        @XmlElement(name = "S")
        protected 1.5.0/docs/api/java/lang/Integer.html">Integer s;
        @XmlElement(name = "TC")
        protected 1.5.0/docs/api/java/lang/Integer.html">Integer tc;
        @XmlElement(name = "O")
        protected 1.5.0/docs/api/java/lang/Integer.html">Integer o;

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

        public 1.5.0/docs/api/java/lang/Integer.html">Integer getT() {
            return t;
        }

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

        public void setT(1.5.0/docs/api/java/lang/Integer.html">Integer value) {
            this.t = value;
        }

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

        public 1.5.0/docs/api/java/lang/Integer.html">Integer getTP() {
            return tp;
        }

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

        public void setTP(1.5.0/docs/api/java/lang/Integer.html">Integer value) {
            this.tp = value;
        }

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

        public 1.5.0/docs/api/java/lang/Integer.html">Integer getP() {
            return p;
        }

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

        public void setP(1.5.0/docs/api/java/lang/Integer.html">Integer value) {
            this.p = value;
        }

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

        public 1.5.0/docs/api/java/lang/Integer.html">Integer getPL() {
            return pl;
        }

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

        public void setPL(1.5.0/docs/api/java/lang/Integer.html">Integer value) {
            this.pl = value;
        }

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

        public 1.5.0/docs/api/java/lang/Integer.html">Integer getPD() {
            return pd;
        }

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

        public void setPD(1.5.0/docs/api/java/lang/Integer.html">Integer value) {
            this.pd = value;
        }

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

        public 1.5.0/docs/api/java/lang/Integer.html">Integer getOT() {
            return ot;
        }

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

        public void setOT(1.5.0/docs/api/java/lang/Integer.html">Integer value) {
            this.ot = value;
        }

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

        public 1.5.0/docs/api/java/lang/Integer.html">Integer getE() {
            return e;
        }

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

        public void setE(1.5.0/docs/api/java/lang/Integer.html">Integer value) {
            this.e = value;
        }

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

        public 1.5.0/docs/api/java/lang/Integer.html">Integer getS() {
            return s;
        }

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

        public void setS(1.5.0/docs/api/java/lang/Integer.html">Integer value) {
            this.s = value;
        }

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

        public 1.5.0/docs/api/java/lang/Integer.html">Integer getTC() {
            return tc;
        }

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

        public void setTC(1.5.0/docs/api/java/lang/Integer.html">Integer value) {
            this.tc = value;
        }

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

        public 1.5.0/docs/api/java/lang/Integer.html">Integer getO() {
            return o;
        }

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

        public void setO(1.5.0/docs/api/java/lang/Integer.html">Integer value) {
            this.o = value;
        }

    }

}