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.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
 
3
/**
8
/**
4
 * Created by jorgemachado on 11/10/17.
9
 * Created by jorgemachado on 11/10/17.
5
 */
10
 */
6
public class ReportsUcSummarySection extends DocumentSection
11
public class ReportsUcSummarySection extends DocumentSection
7
{
12
{
8
    1.5.0/docs/api/java/awt/TextComponent.html">TextComponent text = new 1.5.0/docs/api/java/awt/TextComponent.html">TextComponent();
-
 
9
 
-
 
10
    UnitsDtpTable unitsDtpTable = new UnitsDtpTable();
-
 
11
 
-
 
12
    CustomPane customPane = new CustomPane();
-
 
13
 
13
 
14
    public 1.5.0/docs/api/java/awt/TextComponent.html">TextComponent getText() {
14
    public ReportsUcSummarySection()
15
        return text;
-
 
16
    }
15
    {
17
 
-
 
18
    public void setText(1.5.0/docs/api/java/awt/TextComponent.html">TextComponent text) {
-
 
19
        this.text = text;
-
 
20
    }
-
 
21
 
16
 
22
    public UnitsDtpTable getUnitsDtpTable() {
-
 
23
        return unitsDtpTable;
-
 
24
    }
17
    }
25
 
-
 
26
    public void setUnitsDtpTable(UnitsDtpTable unitsDtpTable) {
18
    public void init(){
27
        this.unitsDtpTable = unitsDtpTable;
19
        super.setTitle("Mapa Sintese dos Relatórios dos Reeponsáveis das UC's");
28
    }
-
 
29
 
-
 
30
    public CustomPane getCustomPane() {
20
        super.getComponents().add(new 1.5.0/docs/api/java/awt/TextComponent.html">TextComponent());
31
        return customPane;
-
 
32
    }
-
 
33
 
-
 
34
    public void setCustomPane(CustomPane customPane) {
21
        super.getComponents().add(new UnitsDtpTable());
35
        this.customPane = customPane;
22
        super.getComponents().add(new CustomPane());
36
    }
23
    }
37
}
24
}