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.services.courses.coursereport.documentmodel.reportucsummary.UnitsDtpTable;
4
import pt.estgp.estgweb.utils.documentBuilder.CustomPane;
5
import pt.estgp.estgweb.utils.documentBuilder.DocumentSection;
6
import pt.estgp.estgweb.utils.documentBuilder.TextComponent;
7
 
1814 jmachado 8
/**
9
 * Created by jorgemachado on 11/10/17.
10
 */
11
public class ReportsUcSummarySection extends DocumentSection
12
{
13
 
1830 jmachado 14
    public ReportsUcSummarySection()
15
    {
1814 jmachado 16
 
17
    }
1830 jmachado 18
    public void init(){
19
        super.setTitle("Mapa Sintese dos Relatórios dos Reeponsáveis das UC's");
20
        super.getComponents().add(new 1.5.0/docs/api/java/awt/TextComponent.html">TextComponent());
21
        super.getComponents().add(new UnitsDtpTable());
22
        super.getComponents().add(new CustomPane());
1814 jmachado 23
    }
24
}