Subversion Repositories bacoAlunos

Rev

Rev 1561 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1553 jmachado 1
package pt.estgp.estgweb.domain;
2
// Generated 9/Nov/2016 11:46:52 by Hibernate Tools 3.2.0.b9
3
 
4
 
5
import java.util.HashSet;
6
import java.util.Set;
7
 
8
/**
9
 * QuestionarioReportDocenteFile generated by hbm2java
10
 */
11
public abstract class QuestionarioReportDocenteFile extends pt.estgp.estgweb.domain.QuestionarioReportFileImpl implements java.io.1.5.0/docs/api/java/io/Serializable.html">Serializable {
12
 
13
 
14
     private Teacher teacher;
15
     private Set<CourseUnit> courseUnits = new HashSet<CourseUnit>(0);
16
 
17
    public QuestionarioReportDocenteFile() {
18
    }
19
 
20
 
21
    public Teacher getTeacher() {
22
        return this.teacher;
23
    }
24
 
25
    public void setTeacher(Teacher teacher) {
26
        this.teacher = teacher;
27
    }
28
    public Set<CourseUnit> getCourseUnits() {
29
        return this.courseUnits;
30
    }
31
 
32
    public void setCourseUnits(Set<CourseUnit> courseUnits) {
33
        this.courseUnits = courseUnits;
34
    }
35
 
36
 
37
 
38
 
39
}
40
 
41