Subversion Repositories bacoAlunos

Rev

Rev 1927 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1312 jmachado 1
package pt.estgp.estgweb.domain;
1974 grupo5 2
// Generated 29/jan/2018 12:25:13 by Hibernate Tools 3.2.0.b9
1312 jmachado 3
 
4
 
5
import java.util.ArrayList;
6
import java.util.HashSet;
7
import java.util.List;
8
import java.util.Set;
9
 
10
/**
11
 * PageSection generated by hbm2java
12
 */
13
public abstract class PageSection extends pt.estgp.estgweb.domain.PageContentImpl implements java.io.1.5.0/docs/api/java/io/Serializable.html">Serializable {
14
 
15
 
16
     private boolean topLayoutSection;
17
     private List<PageContent> childs = new ArrayList<PageContent>(0);
18
     private Set<CourseUnit> courseUnits = new HashSet<CourseUnit>(0);
19
     private Set<Course> courses = new HashSet<Course>(0);
20
 
21
    public PageSection() {
22
    }
23
 
24
 
25
    public boolean isTopLayoutSection() {
26
        return this.topLayoutSection;
27
    }
28
 
29
    public void setTopLayoutSection(boolean topLayoutSection) {
30
        this.topLayoutSection = topLayoutSection;
31
    }
32
    public List<PageContent> getChilds() {
33
        return this.childs;
34
    }
35
 
36
    public void setChilds(List<PageContent> childs) {
37
        this.childs = childs;
38
    }
39
    public Set<CourseUnit> getCourseUnits() {
40
        return this.courseUnits;
41
    }
42
 
43
    public void setCourseUnits(Set<CourseUnit> courseUnits) {
44
        this.courseUnits = courseUnits;
45
    }
46
    public Set<Course> getCourses() {
47
        return this.courses;
48
    }
49
 
50
    public void setCourses(Set<Course> courses) {
51
        this.courses = courses;
52
    }
53
 
54
 
55
 
56
 
57
}
58
 
59