Subversion Repositories bacoAlunos

Rev

Rev 1496 | Rev 1504 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1496 jmachado 1
//
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-558 
3
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4
// Any modifications to this file will be lost upon recompilation of the source schema. 
1503 jmachado 5
// Generated on: 2016.07.29 at 04:05:35 PM WEST 
1496 jmachado 6
//
7
 
8
 
9
package pt.estgp.estgweb.services.courses.xsd;
10
 
11
import javax.xml.bind.annotation.XmlAccessType;
12
import javax.xml.bind.annotation.XmlAccessorType;
1503 jmachado 13
import javax.xml.bind.annotation.XmlAttribute;
1496 jmachado 14
import javax.xml.bind.annotation.XmlElement;
15
import javax.xml.bind.annotation.XmlType;
16
 
17
 
18
/**
19
 * <p>Java class for unidadeType complex type.
20
 *
21
 * <p>The following schema fragment specifies the expected content contained within this class.
22
 *
23
 * <pre>
24
 * &lt;complexType name="unidadeType">
25
 *   &lt;complexContent>
26
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27
 *       &lt;sequence>
28
 *         &lt;element name="urlFichaCurricular" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
29
 *         &lt;element name="nome" type="{http://www.w3.org/2001/XMLSchema}string"/>
30
 *         &lt;element name="dep" type="{http://www.w3.org/2001/XMLSchema}string"/>
31
 *         &lt;element name="totalHoras" type="{http://www.w3.org/2001/XMLSchema}int"/>
32
 *         &lt;element name="horasContacto">
33
 *           &lt;complexType>
34
 *             &lt;complexContent>
35
 *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
36
 *                 &lt;sequence>
37
 *                   &lt;element name="T" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
38
 *                   &lt;element name="TP" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
39
 *                   &lt;element name="P" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
40
 *                   &lt;element name="PL" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
41
 *                   &lt;element name="PD" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
42
 *                   &lt;element name="OT" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
43
 *                   &lt;element name="E" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
44
 *                   &lt;element name="S" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
45
 *                   &lt;element name="TC" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
46
 *                   &lt;element name="O" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
47
 *                 &lt;/sequence>
48
 *               &lt;/restriction>
49
 *             &lt;/complexContent>
50
 *           &lt;/complexType>
51
 *         &lt;/element>
52
 *         &lt;element name="ECTS" type="{http://www.w3.org/2001/XMLSchema}string"/>
53
 *         &lt;element name="obs" type="{http://www.w3.org/2001/XMLSchema}string"/>
54
 *       &lt;/sequence>
1503 jmachado 55
 *       &lt;attribute name="siges" type="{http://www.w3.org/2001/XMLSchema}string" />
1496 jmachado 56
 *     &lt;/restriction>
57
 *   &lt;/complexContent>
58
 * &lt;/complexType>
59
 * </pre>
60
 *
61
 *
62
 */
63
@XmlAccessorType(XmlAccessType.FIELD)
64
@XmlType(name = "unidadeType", propOrder = {
65
    "urlFichaCurricular",
66
    "nome",
67
    "dep",
68
    "totalHoras",
69
    "horasContacto",
70
    "ects",
71
    "obs"
72
})
73
public class UnidadeType {
74
 
75
    protected 1.5.0/docs/api/java/lang/String.html">String urlFichaCurricular;
76
    @XmlElement(required = true)
77
    protected 1.5.0/docs/api/java/lang/String.html">String nome;
78
    @XmlElement(required = true)
79
    protected 1.5.0/docs/api/java/lang/String.html">String dep;
80
    protected int totalHoras;
81
    @XmlElement(required = true)
82
    protected UnidadeType.HorasContacto horasContacto;
83
    @XmlElement(name = "ECTS", required = true)
84
    protected 1.5.0/docs/api/java/lang/String.html">String ects;
85
    @XmlElement(required = true)
86
    protected 1.5.0/docs/api/java/lang/String.html">String obs;
1503 jmachado 87
    @XmlAttribute
88
    protected 1.5.0/docs/api/java/lang/String.html">String siges;
1496 jmachado 89
 
90
    /**
91
     * Gets the value of the urlFichaCurricular property.
92
     *
93
     * @return
94
     *     possible object is
95
     *     {@link String }
96
     *    
97
     */
98
    public 1.5.0/docs/api/java/lang/String.html">String getUrlFichaCurricular() {
99
        return urlFichaCurricular;
100
    }
101
 
102
    /**
103
     * Sets the value of the urlFichaCurricular property.
104
     *
105
     * @param value
106
     *     allowed object is
107
     *     {@link String }
108
     *    
109
     */
110
    public void setUrlFichaCurricular(1.5.0/docs/api/java/lang/String.html">String value) {
111
        this.urlFichaCurricular = value;
112
    }
113
 
114
    /**
115
     * Gets the value of the nome property.
116
     *
117
     * @return
118
     *     possible object is
119
     *     {@link String }
120
     *    
121
     */
122
    public 1.5.0/docs/api/java/lang/String.html">String getNome() {
123
        return nome;
124
    }
125
 
126
    /**
127
     * Sets the value of the nome property.
128
     *
129
     * @param value
130
     *     allowed object is
131
     *     {@link String }
132
     *    
133
     */
134
    public void setNome(1.5.0/docs/api/java/lang/String.html">String value) {
135
        this.nome = value;
136
    }
137
 
138
    /**
139
     * Gets the value of the dep property.
140
     *
141
     * @return
142
     *     possible object is
143
     *     {@link String }
144
     *    
145
     */
146
    public 1.5.0/docs/api/java/lang/String.html">String getDep() {
147
        return dep;
148
    }
149
 
150
    /**
151
     * Sets the value of the dep property.
152
     *
153
     * @param value
154
     *     allowed object is
155
     *     {@link String }
156
     *    
157
     */
158
    public void setDep(1.5.0/docs/api/java/lang/String.html">String value) {
159
        this.dep = value;
160
    }
161
 
162
    /**
163
     * Gets the value of the totalHoras property.
164
     *
165
     */
166
    public int getTotalHoras() {
167
        return totalHoras;
168
    }
169
 
170
    /**
171
     * Sets the value of the totalHoras property.
172
     *
173
     */
174
    public void setTotalHoras(int value) {
175
        this.totalHoras = value;
176
    }
177
 
178
    /**
179
     * Gets the value of the horasContacto property.
180
     *
181
     * @return
182
     *     possible object is
183
     *     {@link UnidadeType.HorasContacto }
184
     *    
185
     */
186
    public UnidadeType.HorasContacto getHorasContacto() {
187
        return horasContacto;
188
    }
189
 
190
    /**
191
     * Sets the value of the horasContacto property.
192
     *
193
     * @param value
194
     *     allowed object is
195
     *     {@link UnidadeType.HorasContacto }
196
     *    
197
     */
198
    public void setHorasContacto(UnidadeType.HorasContacto value) {
199
        this.horasContacto = value;
200
    }
201
 
202
    /**
203
     * Gets the value of the ects property.
204
     *
205
     * @return
206
     *     possible object is
207
     *     {@link String }
208
     *    
209
     */
210
    public 1.5.0/docs/api/java/lang/String.html">String getECTS() {
211
        return ects;
212
    }
213
 
214
    /**
215
     * Sets the value of the ects property.
216
     *
217
     * @param value
218
     *     allowed object is
219
     *     {@link String }
220
     *    
221
     */
222
    public void setECTS(1.5.0/docs/api/java/lang/String.html">String value) {
223
        this.ects = value;
224
    }
225
 
226
    /**
227
     * Gets the value of the obs property.
228
     *
229
     * @return
230
     *     possible object is
231
     *     {@link String }
232
     *    
233
     */
234
    public 1.5.0/docs/api/java/lang/String.html">String getObs() {
235
        return obs;
236
    }
237
 
238
    /**
239
     * Sets the value of the obs property.
240
     *
241
     * @param value
242
     *     allowed object is
243
     *     {@link String }
244
     *    
245
     */
246
    public void setObs(1.5.0/docs/api/java/lang/String.html">String value) {
247
        this.obs = value;
248
    }
249
 
1503 jmachado 250
    /**
251
     * Gets the value of the siges property.
252
     *
253
     * @return
254
     *     possible object is
255
     *     {@link String }
256
     *    
257
     */
258
    public 1.5.0/docs/api/java/lang/String.html">String getSiges() {
259
        return siges;
260
    }
1496 jmachado 261
 
262
    /**
1503 jmachado 263
     * Sets the value of the siges property.
264
     *
265
     * @param value
266
     *     allowed object is
267
     *     {@link String }
268
     *    
269
     */
270
    public void setSiges(1.5.0/docs/api/java/lang/String.html">String value) {
271
        this.siges = value;
272
    }
273
 
274
 
275
    /**
1496 jmachado 276
     * <p>Java class for anonymous complex type.
277
     *
278
     * <p>The following schema fragment specifies the expected content contained within this class.
279
     *
280
     * <pre>
281
     * &lt;complexType>
282
     *   &lt;complexContent>
283
     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
284
     *       &lt;sequence>
285
     *         &lt;element name="T" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
286
     *         &lt;element name="TP" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
287
     *         &lt;element name="P" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
288
     *         &lt;element name="PL" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
289
     *         &lt;element name="PD" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
290
     *         &lt;element name="OT" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
291
     *         &lt;element name="E" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
292
     *         &lt;element name="S" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
293
     *         &lt;element name="TC" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
294
     *         &lt;element name="O" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
295
     *       &lt;/sequence>
296
     *     &lt;/restriction>
297
     *   &lt;/complexContent>
298
     * &lt;/complexType>
299
     * </pre>
300
     *
301
     *
302
     */
303
    @XmlAccessorType(XmlAccessType.FIELD)
304
    @XmlType(name = "", propOrder = {
305
        "t",
306
        "tp",
307
        "p",
308
        "pl",
309
        "pd",
310
        "ot",
311
        "e",
312
        "s",
313
        "tc",
314
        "o"
315
    })
316
    public static class HorasContacto {
317
 
318
        @XmlElement(name = "T")
319
        protected 1.5.0/docs/api/java/lang/Integer.html">Integer t;
320
        @XmlElement(name = "TP")
321
        protected 1.5.0/docs/api/java/lang/Integer.html">Integer tp;
322
        @XmlElement(name = "P")
323
        protected 1.5.0/docs/api/java/lang/Integer.html">Integer p;
324
        @XmlElement(name = "PL")
325
        protected 1.5.0/docs/api/java/lang/Integer.html">Integer pl;
326
        @XmlElement(name = "PD")
327
        protected 1.5.0/docs/api/java/lang/Integer.html">Integer pd;
328
        @XmlElement(name = "OT")
329
        protected 1.5.0/docs/api/java/lang/Integer.html">Integer ot;
330
        @XmlElement(name = "E")
331
        protected 1.5.0/docs/api/java/lang/Integer.html">Integer e;
332
        @XmlElement(name = "S")
333
        protected 1.5.0/docs/api/java/lang/Integer.html">Integer s;
334
        @XmlElement(name = "TC")
335
        protected 1.5.0/docs/api/java/lang/Integer.html">Integer tc;
336
        @XmlElement(name = "O")
337
        protected 1.5.0/docs/api/java/lang/Integer.html">Integer o;
338
 
339
        /**
340
         * Gets the value of the t property.
341
         *
342
         * @return
343
         *     possible object is
344
         *     {@link Integer }
345
         *    
346
         */
347
        public 1.5.0/docs/api/java/lang/Integer.html">Integer getT() {
348
            return t;
349
        }
350
 
351
        /**
352
         * Sets the value of the t property.
353
         *
354
         * @param value
355
         *     allowed object is
356
         *     {@link Integer }
357
         *    
358
         */
359
        public void setT(1.5.0/docs/api/java/lang/Integer.html">Integer value) {
360
            this.t = value;
361
        }
362
 
363
        /**
364
         * Gets the value of the tp property.
365
         *
366
         * @return
367
         *     possible object is
368
         *     {@link Integer }
369
         *    
370
         */
371
        public 1.5.0/docs/api/java/lang/Integer.html">Integer getTP() {
372
            return tp;
373
        }
374
 
375
        /**
376
         * Sets the value of the tp property.
377
         *
378
         * @param value
379
         *     allowed object is
380
         *     {@link Integer }
381
         *    
382
         */
383
        public void setTP(1.5.0/docs/api/java/lang/Integer.html">Integer value) {
384
            this.tp = value;
385
        }
386
 
387
        /**
388
         * Gets the value of the p property.
389
         *
390
         * @return
391
         *     possible object is
392
         *     {@link Integer }
393
         *    
394
         */
395
        public 1.5.0/docs/api/java/lang/Integer.html">Integer getP() {
396
            return p;
397
        }
398
 
399
        /**
400
         * Sets the value of the p property.
401
         *
402
         * @param value
403
         *     allowed object is
404
         *     {@link Integer }
405
         *    
406
         */
407
        public void setP(1.5.0/docs/api/java/lang/Integer.html">Integer value) {
408
            this.p = value;
409
        }
410
 
411
        /**
412
         * Gets the value of the pl property.
413
         *
414
         * @return
415
         *     possible object is
416
         *     {@link Integer }
417
         *    
418
         */
419
        public 1.5.0/docs/api/java/lang/Integer.html">Integer getPL() {
420
            return pl;
421
        }
422
 
423
        /**
424
         * Sets the value of the pl property.
425
         *
426
         * @param value
427
         *     allowed object is
428
         *     {@link Integer }
429
         *    
430
         */
431
        public void setPL(1.5.0/docs/api/java/lang/Integer.html">Integer value) {
432
            this.pl = value;
433
        }
434
 
435
        /**
436
         * Gets the value of the pd property.
437
         *
438
         * @return
439
         *     possible object is
440
         *     {@link Integer }
441
         *    
442
         */
443
        public 1.5.0/docs/api/java/lang/Integer.html">Integer getPD() {
444
            return pd;
445
        }
446
 
447
        /**
448
         * Sets the value of the pd property.
449
         *
450
         * @param value
451
         *     allowed object is
452
         *     {@link Integer }
453
         *    
454
         */
455
        public void setPD(1.5.0/docs/api/java/lang/Integer.html">Integer value) {
456
            this.pd = value;
457
        }
458
 
459
        /**
460
         * Gets the value of the ot property.
461
         *
462
         * @return
463
         *     possible object is
464
         *     {@link Integer }
465
         *    
466
         */
467
        public 1.5.0/docs/api/java/lang/Integer.html">Integer getOT() {
468
            return ot;
469
        }
470
 
471
        /**
472
         * Sets the value of the ot property.
473
         *
474
         * @param value
475
         *     allowed object is
476
         *     {@link Integer }
477
         *    
478
         */
479
        public void setOT(1.5.0/docs/api/java/lang/Integer.html">Integer value) {
480
            this.ot = value;
481
        }
482
 
483
        /**
484
         * Gets the value of the e property.
485
         *
486
         * @return
487
         *     possible object is
488
         *     {@link Integer }
489
         *    
490
         */
491
        public 1.5.0/docs/api/java/lang/Integer.html">Integer getE() {
492
            return e;
493
        }
494
 
495
        /**
496
         * Sets the value of the e property.
497
         *
498
         * @param value
499
         *     allowed object is
500
         *     {@link Integer }
501
         *    
502
         */
503
        public void setE(1.5.0/docs/api/java/lang/Integer.html">Integer value) {
504
            this.e = value;
505
        }
506
 
507
        /**
508
         * Gets the value of the s property.
509
         *
510
         * @return
511
         *     possible object is
512
         *     {@link Integer }
513
         *    
514
         */
515
        public 1.5.0/docs/api/java/lang/Integer.html">Integer getS() {
516
            return s;
517
        }
518
 
519
        /**
520
         * Sets the value of the s property.
521
         *
522
         * @param value
523
         *     allowed object is
524
         *     {@link Integer }
525
         *    
526
         */
527
        public void setS(1.5.0/docs/api/java/lang/Integer.html">Integer value) {
528
            this.s = value;
529
        }
530
 
531
        /**
532
         * Gets the value of the tc property.
533
         *
534
         * @return
535
         *     possible object is
536
         *     {@link Integer }
537
         *    
538
         */
539
        public 1.5.0/docs/api/java/lang/Integer.html">Integer getTC() {
540
            return tc;
541
        }
542
 
543
        /**
544
         * Sets the value of the tc property.
545
         *
546
         * @param value
547
         *     allowed object is
548
         *     {@link Integer }
549
         *    
550
         */
551
        public void setTC(1.5.0/docs/api/java/lang/Integer.html">Integer value) {
552
            this.tc = value;
553
        }
554
 
555
        /**
556
         * Gets the value of the o property.
557
         *
558
         * @return
559
         *     possible object is
560
         *     {@link Integer }
561
         *    
562
         */
563
        public 1.5.0/docs/api/java/lang/Integer.html">Integer getO() {
564
            return o;
565
        }
566
 
567
        /**
568
         * Sets the value of the o property.
569
         *
570
         * @param value
571
         *     allowed object is
572
         *     {@link Integer }
573
         *    
574
         */
575
        public void setO(1.5.0/docs/api/java/lang/Integer.html">Integer value) {
576
            this.o = value;
577
        }
578
 
579
    }
580
 
581
}