Subversion Repositories bacoAlunos

Rev

Rev 1830 | Blame | Compare with Previous | Last modification | View Log | RSS feed

package pt.estgp.estgweb.services.courses.coursereport.documentmodel;

import pt.estgp.estgweb.services.courses.coursereport.documentmodel.learningresults.LearningAnalysisSection;
import pt.estgp.estgweb.services.courses.coursereport.documentmodel.learningresults.LearningGlobalAnalysisSection;
import pt.estgp.estgweb.services.courses.coursereport.documentmodel.learningresults.components.UnitsLearningResultsTable;
import pt.estgp.estgweb.utils.documentBuilder.CustomPane;
import pt.estgp.estgweb.utils.documentBuilder.DocumentSection;
import pt.estgp.estgweb.utils.documentBuilder.GenericTextSection;
import pt.estgp.estgweb.utils.documentBuilder.TextComponent;

/**
 * Created by jorgemachado on 11/10/17.
 */

public class LearningResultsSection extends DocumentSection
{


    public LearningResultsSection()
    {
        super();
    }

    public void init()
    {
        super.setTitle("Resultados da Aprendizagem");
        super.getComponents().add(new 1.5.0/docs/api/java/awt/TextComponent.html">TextComponent());
        super.getComponents().add(new UnitsLearningResultsTable());
        super.getComponents().add(new CustomPane());

        //3.1 Analise Aproveitamento
        super.getSections().add(new LearningAnalysisSection("Analise Aproveitamento"));
        //3.2 Analise Global Aproveitamento
        super.getSections().add(new LearningGlobalAnalysisSection("Analise Global Aproveitamento"));
        //3.3 Analise Funcionamento UCs
        super.getSections().add(new GenericTextSection("Analise Funcionamento UCs"));
        //3.4 Cumprimento de Programas
        super.getSections().add(new GenericTextSection("Cumprimento de Programas"));
    }
}