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.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
 
1814 jmachado 11
/**
12
 * Created by jorgemachado on 11/10/17.
13
 */
14
public class LearningResultsSection extends DocumentSection
15
{
16
 
17
 
1830 jmachado 18
    public LearningResultsSection()
19
    {
20
        super();
1814 jmachado 21
    }
22
 
1830 jmachado 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());
1814 jmachado 29
 
1830 jmachado 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
35
        super.getSubSections().add(new GenericTextSection("Analise Funcionamento UCs"));
36
        //3.4 Cumprimento de Programas
37
        super.getSubSections().add(new GenericTextSection("Cumprimento de Programas"));
1814 jmachado 38
    }
39
}