Subversion Repositories bacoAlunos

Rev

Rev 1830 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1830 Rev 1848
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;
3
import pt.estgp.estgweb.utils.documentBuilder.DocumentSection;
4
import pt.estgp.estgweb.utils.documentBuilder.GenericTextSection;
4
import pt.estgp.estgweb.utils.documentBuilder.GenericTextSection;
5
 
5
 
6
/**
6
/**
7
 * Created by jorgemachado on 11/10/17.
7
 * Created by jorgemachado on 11/10/17.
8
 */
8
 */
9
public class ConclusionsSection extends DocumentSection
9
public class ConclusionsSection extends DocumentSection
10
{
10
{
11
 
11
 
12
    public ConclusionsSection()
12
    public ConclusionsSection()
13
    {
13
    {
14
    }
14
    }
15
 
15
 
16
    public void init()
16
    public void init()
17
    {
17
    {
18
        super.setTitle("Conclusões");
18
        super.setTitle("Conclusões");
19
        super.getSubSections().add(new GenericTextSection("Identificação de Problemas"));
19
        super.getSections().add(new GenericTextSection("Identificação de Problemas"));
20
        super.getSubSections().add(new GenericTextSection("Melhorias"));
20
        super.getSections().add(new GenericTextSection("Melhorias"));
21
    }
21
    }
22
}
22
}
23
 
23