Subversion Repositories bacoAlunos

Rev

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

package pt.estgp.estgweb.domain;
// Generated 29/jan/2018 12:25:13 by Hibernate Tools 3.2.0.b9


import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

/**
 * PageSection generated by hbm2java
 */

public abstract class PageSection extends pt.estgp.estgweb.domain.PageContentImpl implements java.io.1.5.0/docs/api/java/io/Serializable.html">Serializable {


     private boolean topLayoutSection;
     private List<PageContent> childs = new ArrayList<PageContent>(0);
     private Set<CourseUnit> courseUnits = new HashSet<CourseUnit>(0);
     private Set<Course> courses = new HashSet<Course>(0);

    public PageSection() {
    }

   
    public boolean isTopLayoutSection() {
        return this.topLayoutSection;
    }
   
    public void setTopLayoutSection(boolean topLayoutSection) {
        this.topLayoutSection = topLayoutSection;
    }
    public List<PageContent> getChilds() {
        return this.childs;
    }
   
    public void setChilds(List<PageContent> childs) {
        this.childs = childs;
    }
    public Set<CourseUnit> getCourseUnits() {
        return this.courseUnits;
    }
   
    public void setCourseUnits(Set<CourseUnit> courseUnits) {
        this.courseUnits = courseUnits;
    }
    public Set<Course> getCourses() {
        return this.courses;
    }
   
    public void setCourses(Set<Course> courses) {
        this.courses = courses;
    }




}