Subversion Repositories bacoAlunos

Rev

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

Rev Author Line No. Line
1814 jmachado 1
package pt.estgp.estgweb.services.courses.coursereport.documentmodel;
2
 
1830 jmachado 3
import pt.estgp.estgweb.utils.documentBuilder.DocumentSection;
4
import pt.estgp.estgweb.utils.documentBuilder.GenericTextSection;
5
 
1814 jmachado 6
/**
7
 * Created by jorgemachado on 11/10/17.
8
 */
9
public class ConclusionsSection extends DocumentSection
10
{
11
 
1830 jmachado 12
    public ConclusionsSection()
13
    {
1814 jmachado 14
    }
15
 
1830 jmachado 16
    public void init()
17
    {
18
        super.setTitle("Conclusões");
19
        super.getSubSections().add(new GenericTextSection("Identificação de Problemas"));
20
        super.getSubSections().add(new GenericTextSection("Melhorias"));
1814 jmachado 21
    }
22
}