Subversion Repositories bacoAlunos

Rev

Rev 1830 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1814 jmachado 1
package pt.estgp.estgweb.services.courses.coursereport.documentmodel;
2
 
3
/**
4
 * Created by jorgemachado on 11/10/17.
5
 */
6
public class LearningResultsSection extends DocumentSection
7
{
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
    UnitsLearningResultsTable unitsLearningResultsTable;
11
 
12
    CustomPane customPane = new CustomPane();
13
 
14
    //3.1 Analise Aproveitamento
15
    LearningAnalysisSection learningAnalisysSection = new LearningAnalysisSection();
16
 
17
    //3.2 Analise Global Aproveitamento
18
    LearningGlobalAnalysisSection learningGlobalAnalisysSection = new LearningGlobalAnalysisSection();
19
 
20
    //3.3 Analise Funcionamento UCs
21
    GenericTextSection ucsWorkingAnalisysSection = new GenericTextSection();
22
 
23
    //3.4 Cumprimento de Programas
24
    GenericTextSection ucsProgramExecutedAnalisysSection = new GenericTextSection();
25
 
26
    public 1.5.0/docs/api/java/awt/TextComponent.html">TextComponent getText() {
27
        return text;
28
    }
29
 
30
    public void setText(1.5.0/docs/api/java/awt/TextComponent.html">TextComponent text) {
31
        this.text = text;
32
    }
33
 
34
    public UnitsLearningResultsTable getUnitsLearningResultsTable() {
35
        return unitsLearningResultsTable;
36
    }
37
 
38
    public void setUnitsLearningResultsTable(UnitsLearningResultsTable unitsLearningResultsTable) {
39
        this.unitsLearningResultsTable = unitsLearningResultsTable;
40
    }
41
 
42
    public CustomPane getCustomPane() {
43
        return customPane;
44
    }
45
 
46
    public void setCustomPane(CustomPane customPane) {
47
        this.customPane = customPane;
48
    }
49
 
50
    public LearningAnalysisSection getLearningAnalisysSection() {
51
        return learningAnalisysSection;
52
    }
53
 
54
    public void setLearningAnalisysSection(LearningAnalysisSection learningAnalisysSection) {
55
        this.learningAnalisysSection = learningAnalisysSection;
56
    }
57
 
58
    public LearningGlobalAnalysisSection getLearningGlobalAnalisysSection() {
59
        return learningGlobalAnalisysSection;
60
    }
61
 
62
    public void setLearningGlobalAnalisysSection(LearningGlobalAnalysisSection learningGlobalAnalisysSection) {
63
        this.learningGlobalAnalisysSection = learningGlobalAnalisysSection;
64
    }
65
 
66
    public GenericTextSection getUcsWorkingAnalisysSection() {
67
        return ucsWorkingAnalisysSection;
68
    }
69
 
70
    public void setUcsWorkingAnalisysSection(GenericTextSection ucsWorkingAnalisysSection) {
71
        this.ucsWorkingAnalisysSection = ucsWorkingAnalisysSection;
72
    }
73
 
74
    public GenericTextSection getUcsProgramExecutedAnalisysSection() {
75
        return ucsProgramExecutedAnalisysSection;
76
    }
77
 
78
    public void setUcsProgramExecutedAnalisysSection(GenericTextSection ucsProgramExecutedAnalisysSection) {
79
        this.ucsProgramExecutedAnalisysSection = ucsProgramExecutedAnalisysSection;
80
    }
81
}