Subversion Repositories bacoAlunos

Rev

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

Rev Author Line No. Line
1814 jmachado 1
package pt.estgp.estgweb.services.courses.coursereport.documentmodel;
2
 
3
/**
4
 * Created by jorgemachado on 11/10/17.
5
 */
6
public class ConclusionsSection extends DocumentSection
7
{
8
    GenericTextSection problemsIdentificationSection = new GenericTextSection();
9
 
10
    GenericTextSection improvementsSection = new GenericTextSection();
11
 
12
    public GenericTextSection getProblemsIdentificationSection() {
13
        return problemsIdentificationSection;
14
    }
15
 
16
    public void setProblemsIdentificationSection(GenericTextSection problemsIdentificationSection) {
17
        this.problemsIdentificationSection = problemsIdentificationSection;
18
    }
19
 
20
    public GenericTextSection getImprovementsSection() {
21
        return improvementsSection;
22
    }
23
 
24
    public void setImprovementsSection(GenericTextSection improvementsSection) {
25
        this.improvementsSection = improvementsSection;
26
    }
27
}