Subversion Repositories bacoAlunos

Rev

Rev 1860 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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