Subversion Repositories bacoAlunos

Rev

Rev 1814 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1814 Rev 1830
Line 1... Line 1...
1
package pt.estgp.estgweb.services.courses.coursereport.documentmodel;
1
package pt.estgp.estgweb.services.courses.coursereport.documentmodel;
2
 
2
 
-
 
3
import pt.estgp.estgweb.utils.documentBuilder.DocumentSection;
-
 
4
import pt.estgp.estgweb.utils.documentBuilder.GenericTextSection;
-
 
5
 
3
/**
6
/**
4
 * Created by jorgemachado on 11/10/17.
7
 * Created by jorgemachado on 11/10/17.
5
 */
8
 */
6
public class ConclusionsSection extends DocumentSection
9
public class ConclusionsSection extends DocumentSection
7
{
10
{
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
 
11
 
20
    public GenericTextSection getImprovementsSection() {
12
    public ConclusionsSection()
21
        return improvementsSection;
13
    {
22
    }
14
    }
23
 
15
 
-
 
16
    public void init()
-
 
17
    {
-
 
18
        super.setTitle("Conclusões");
24
    public void setImprovementsSection(GenericTextSection improvementsSection) {
19
        super.getSubSections().add(new GenericTextSection("Identificação de Problemas"));
25
        this.improvementsSection = improvementsSection;
20
        super.getSubSections().add(new GenericTextSection("Melhorias"));
26
    }
21
    }
27
}
22
}