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.GenericTextSection;
4
 
1814 jmachado 5
/**
6
 * Created by jorgemachado on 11/10/17.
7
 */
8
public class IntroSection extends GenericTextSection
9
{
1830 jmachado 10
    public IntroSection()
11
    {
1814 jmachado 12
 
1830 jmachado 13
    }
14
 
15
    public void init()
16
    {
17
        setTitle("Introdução");
18
        super.init();
19
    }
1814 jmachado 20
}