Subversion Repositories bacoAlunos

Rev

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

Rev Author Line No. Line
1312 jmachado 1
package pt.estgp.estgweb.domain;
1619 jmachado 2
// Generated 19/Jan/2017 8:47:29 by Hibernate Tools 3.2.0.b9
1312 jmachado 3
 
4
 
5
import java.util.HashSet;
6
import java.util.Set;
7
 
8
/**
9
 * Teacher generated by hbm2java
10
 */
11
public abstract class Teacher extends pt.estgp.estgweb.domain.SigesUserImpl implements java.io.1.5.0/docs/api/java/io/Serializable.html">Serializable {
12
 
13
 
14
     private 1.5.0/docs/api/java/lang/String.html">String academicName;
15
     private 1.5.0/docs/api/java/lang/String.html">String employerName;
16
     private boolean unitCheck;
17
     private 1.5.0/docs/api/java/lang/String.html">String academicDegree;
18
     private 1.5.0/docs/api/java/lang/String.html">String localRemovedTeachedUnits;
19
     private 1.5.0/docs/api/java/lang/String.html">String localTeachedUnits;
20
     private Set<CourseUnit> responsibleUnits = new HashSet<CourseUnit>(0);
21
     private Set<CourseUnit> teachedUnits = new HashSet<CourseUnit>(0);
22
     private Set<Course> coordinatorCourses = new HashSet<Course>(0);
23
     private Set<Course> directorCourses = new HashSet<Course>(0);
24
 
25
    public Teacher() {
26
    }
27
 
28
 
29
    public 1.5.0/docs/api/java/lang/String.html">String getAcademicName() {
30
        return this.academicName;
31
    }
32
 
33
    public void setAcademicName(1.5.0/docs/api/java/lang/String.html">String academicName) {
34
        this.academicName = academicName;
35
    }
36
    public 1.5.0/docs/api/java/lang/String.html">String getEmployerName() {
37
        return this.employerName;
38
    }
39
 
40
    public void setEmployerName(1.5.0/docs/api/java/lang/String.html">String employerName) {
41
        this.employerName = employerName;
42
    }
43
    public boolean isUnitCheck() {
44
        return this.unitCheck;
45
    }
46
 
47
    public void setUnitCheck(boolean unitCheck) {
48
        this.unitCheck = unitCheck;
49
    }
50
    public 1.5.0/docs/api/java/lang/String.html">String getAcademicDegree() {
51
        return this.academicDegree;
52
    }
53
 
54
    public void setAcademicDegree(1.5.0/docs/api/java/lang/String.html">String academicDegree) {
55
        this.academicDegree = academicDegree;
56
    }
57
    public 1.5.0/docs/api/java/lang/String.html">String getLocalRemovedTeachedUnits() {
58
        return this.localRemovedTeachedUnits;
59
    }
60
 
61
    public void setLocalRemovedTeachedUnits(1.5.0/docs/api/java/lang/String.html">String localRemovedTeachedUnits) {
62
        this.localRemovedTeachedUnits = localRemovedTeachedUnits;
63
    }
64
    public 1.5.0/docs/api/java/lang/String.html">String getLocalTeachedUnits() {
65
        return this.localTeachedUnits;
66
    }
67
 
68
    public void setLocalTeachedUnits(1.5.0/docs/api/java/lang/String.html">String localTeachedUnits) {
69
        this.localTeachedUnits = localTeachedUnits;
70
    }
71
    public Set<CourseUnit> getResponsibleUnits() {
72
        return this.responsibleUnits;
73
    }
74
 
75
    public void setResponsibleUnits(Set<CourseUnit> responsibleUnits) {
76
        this.responsibleUnits = responsibleUnits;
77
    }
78
    public Set<CourseUnit> getTeachedUnits() {
79
        return this.teachedUnits;
80
    }
81
 
82
    public void setTeachedUnits(Set<CourseUnit> teachedUnits) {
83
        this.teachedUnits = teachedUnits;
84
    }
85
    public Set<Course> getCoordinatorCourses() {
86
        return this.coordinatorCourses;
87
    }
88
 
89
    public void setCoordinatorCourses(Set<Course> coordinatorCourses) {
90
        this.coordinatorCourses = coordinatorCourses;
91
    }
92
    public Set<Course> getDirectorCourses() {
93
        return this.directorCourses;
94
    }
95
 
96
    public void setDirectorCourses(Set<Course> directorCourses) {
97
        this.directorCourses = directorCourses;
98
    }
99
 
100
 
101
 
102
 
103
}
104
 
105