Subversion Repositories bacoAlunos

Rev

Rev 1830 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

package pt.estgp.estgweb.services.courses.coursereport.documentmodel;

/**
 * Created by jorgemachado on 11/10/17.
 */

public class ConclusionsSection extends DocumentSection
{
    GenericTextSection problemsIdentificationSection = new GenericTextSection();

    GenericTextSection improvementsSection = new GenericTextSection();

    public GenericTextSection getProblemsIdentificationSection() {
        return problemsIdentificationSection;
    }

    public void setProblemsIdentificationSection(GenericTextSection problemsIdentificationSection) {
        this.problemsIdentificationSection = problemsIdentificationSection;
    }

    public GenericTextSection getImprovementsSection() {
        return improvementsSection;
    }

    public void setImprovementsSection(GenericTextSection improvementsSection) {
        this.improvementsSection = improvementsSection;
    }
}