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.learningresults.LearningAnalysisSection;
-
 
4
import pt.estgp.estgweb.services.courses.coursereport.documentmodel.learningresults.LearningGlobalAnalysisSection;
-
 
5
import pt.estgp.estgweb.services.courses.coursereport.documentmodel.learningresults.components.UnitsLearningResultsTable;
-
 
6
import pt.estgp.estgweb.utils.documentBuilder.CustomPane;
-
 
7
import pt.estgp.estgweb.utils.documentBuilder.DocumentSection;
-
 
8
import pt.estgp.estgweb.utils.documentBuilder.GenericTextSection;
-
 
9
import pt.estgp.estgweb.utils.documentBuilder.TextComponent;
-
 
10
 
3
/**
11
/**
4
 * Created by jorgemachado on 11/10/17.
12
 * Created by jorgemachado on 11/10/17.
5
 */
13
 */
6
public class LearningResultsSection extends DocumentSection
14
public class LearningResultsSection extends DocumentSection
7
{
15
{
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
 
16
 
74
    public GenericTextSection getUcsProgramExecutedAnalisysSection() {
-
 
75
        return ucsProgramExecutedAnalisysSection;
-
 
76
    }
-
 
77
 
17
 
-
 
18
    public LearningResultsSection()
-
 
19
    {
-
 
20
        super();
-
 
21
    }
-
 
22
 
-
 
23
    public void init()
-
 
24
    {
-
 
25
        super.setTitle("Resultados da Aprendizagem");
-
 
26
        super.getComponents().add(new 1.5.0/docs/api/java/awt/TextComponent.html">TextComponent());
-
 
27
        super.getComponents().add(new UnitsLearningResultsTable());
-
 
28
        super.getComponents().add(new CustomPane());
-
 
29
 
-
 
30
        //3.1 Analise Aproveitamento
-
 
31
        super.getSubSections().add(new LearningAnalysisSection("Analise Aproveitamento"));
-
 
32
        //3.2 Analise Global Aproveitamento
-
 
33
        super.getSubSections().add(new LearningGlobalAnalysisSection("Analise Global Aproveitamento"));
-
 
34
        //3.3 Analise Funcionamento UCs
78
    public void setUcsProgramExecutedAnalisysSection(GenericTextSection ucsProgramExecutedAnalisysSection) {
35
        super.getSubSections().add(new GenericTextSection("Analise Funcionamento UCs"));
-
 
36
        //3.4 Cumprimento de Programas
79
        this.ucsProgramExecutedAnalisysSection = ucsProgramExecutedAnalisysSection;
37
        super.getSubSections().add(new GenericTextSection("Cumprimento de Programas"));
80
    }
38
    }
81
}
39
}