Subversion Repositories bacoAlunos

Rev

Rev 1981 | 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;
1988 grupo4 2
// Generated 7/fev/2018 15:59:58 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;
1670 jmachado 20
     private CourseDepartmentImpl department;
1312 jmachado 21
     private Set<CourseUnit> responsibleUnits = new HashSet<CourseUnit>(0);
22
     private Set<CourseUnit> teachedUnits = new HashSet<CourseUnit>(0);
23
     private Set<Course> coordinatorCourses = new HashSet<Course>(0);
24
     private Set<Course> directorCourses = new HashSet<Course>(0);
25
 
26
    public Teacher() {
27
    }
28
 
29
 
30
    public 1.5.0/docs/api/java/lang/String.html">String getAcademicName() {
31
        return this.academicName;
32
    }
33
 
34
    public void setAcademicName(1.5.0/docs/api/java/lang/String.html">String academicName) {
35
        this.academicName = academicName;
36
    }
37
    public 1.5.0/docs/api/java/lang/String.html">String getEmployerName() {
38
        return this.employerName;
39
    }
40
 
41
    public void setEmployerName(1.5.0/docs/api/java/lang/String.html">String employerName) {
42
        this.employerName = employerName;
43
    }
44
    public boolean isUnitCheck() {
45
        return this.unitCheck;
46
    }
47
 
48
    public void setUnitCheck(boolean unitCheck) {
49
        this.unitCheck = unitCheck;
50
    }
51
    public 1.5.0/docs/api/java/lang/String.html">String getAcademicDegree() {
52
        return this.academicDegree;
53
    }
54
 
55
    public void setAcademicDegree(1.5.0/docs/api/java/lang/String.html">String academicDegree) {
56
        this.academicDegree = academicDegree;
57
    }
58
    public 1.5.0/docs/api/java/lang/String.html">String getLocalRemovedTeachedUnits() {
59
        return this.localRemovedTeachedUnits;
60
    }
61
 
62
    public void setLocalRemovedTeachedUnits(1.5.0/docs/api/java/lang/String.html">String localRemovedTeachedUnits) {
63
        this.localRemovedTeachedUnits = localRemovedTeachedUnits;
64
    }
65
    public 1.5.0/docs/api/java/lang/String.html">String getLocalTeachedUnits() {
66
        return this.localTeachedUnits;
67
    }
68
 
69
    public void setLocalTeachedUnits(1.5.0/docs/api/java/lang/String.html">String localTeachedUnits) {
70
        this.localTeachedUnits = localTeachedUnits;
71
    }
1670 jmachado 72
    public CourseDepartmentImpl getDepartment() {
73
        return this.department;
74
    }
75
 
76
    public void setDepartment(CourseDepartmentImpl department) {
77
        this.department = department;
78
    }
1312 jmachado 79
    public Set<CourseUnit> getResponsibleUnits() {
80
        return this.responsibleUnits;
81
    }
82
 
83
    public void setResponsibleUnits(Set<CourseUnit> responsibleUnits) {
84
        this.responsibleUnits = responsibleUnits;
85
    }
86
    public Set<CourseUnit> getTeachedUnits() {
87
        return this.teachedUnits;
88
    }
89
 
90
    public void setTeachedUnits(Set<CourseUnit> teachedUnits) {
91
        this.teachedUnits = teachedUnits;
92
    }
93
    public Set<Course> getCoordinatorCourses() {
94
        return this.coordinatorCourses;
95
    }
96
 
97
    public void setCoordinatorCourses(Set<Course> coordinatorCourses) {
98
        this.coordinatorCourses = coordinatorCourses;
99
    }
100
    public Set<Course> getDirectorCourses() {
101
        return this.directorCourses;
102
    }
103
 
104
    public void setDirectorCourses(Set<Course> directorCourses) {
105
        this.directorCourses = directorCourses;
106
    }
107
 
108
 
109
 
110
 
111
}
112
 
113