Subversion Repositories bacoAlunos

Rev

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

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

import pt.estgp.estgweb.services.courses.coursereport.documentmodel.learningresults.components.GlobalLearningResultTable;
import pt.estgp.estgweb.services.courses.coursereport.documentmodel.learningresults.components.GlobalLearningResultsChartImg;
import pt.estgp.estgweb.services.courses.coursereport.documentmodel.learningresults.components.GlobalLearningResultsChartYearImg;
import pt.estgp.estgweb.utils.documentBuilder.CustomPane;
import pt.estgp.estgweb.utils.documentBuilder.DocumentSection;
import pt.estgp.estgweb.utils.documentBuilder.TextComponent;

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

public class LearningGlobalAnalysisSection extends DocumentSection
{
    public LearningGlobalAnalysisSection()
    {
    }

    public LearningGlobalAnalysisSection(1.5.0/docs/api/java/lang/String.html">String title) {
        super(title);
        super.getComponents().add(new 1.5.0/docs/api/java/awt/TextComponent.html">TextComponent());
        super.getComponents().add(new GlobalLearningResultTable());
        super.getComponents().add(new GlobalLearningResultsChartImg());
        super.getComponents().add(new 1.5.0/docs/api/java/awt/TextComponent.html">TextComponent());
        super.getComponents().add(new GlobalLearningResultsChartYearImg());
        super.getComponents().add(new CustomPane());
    }
}