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
1830 jmachado 1
package pt.estgp.estgweb.services.courses.coursereport.documentmodel.learningresults;
1814 jmachado 2
 
1830 jmachado 3
import pt.estgp.estgweb.services.courses.coursereport.documentmodel.learningresults.components.GlobalLearningResultTable;
4
import pt.estgp.estgweb.services.courses.coursereport.documentmodel.learningresults.components.GlobalLearningResultsChartImg;
5
import pt.estgp.estgweb.services.courses.coursereport.documentmodel.learningresults.components.GlobalLearningResultsChartYearImg;
6
import pt.estgp.estgweb.utils.documentBuilder.CustomPane;
7
import pt.estgp.estgweb.utils.documentBuilder.DocumentSection;
8
import pt.estgp.estgweb.utils.documentBuilder.TextComponent;
9
 
1814 jmachado 10
/**
11
 * Created by jorgemachado on 11/10/17.
12
 */
13
public class LearningGlobalAnalysisSection extends DocumentSection
14
{
1830 jmachado 15
    public LearningGlobalAnalysisSection()
16
    {
1814 jmachado 17
    }
18
 
1830 jmachado 19
    public LearningGlobalAnalysisSection(1.5.0/docs/api/java/lang/String.html">String title) {
20
        super(title);
21
        super.getComponents().add(new 1.5.0/docs/api/java/awt/TextComponent.html">TextComponent());
22
        super.getComponents().add(new GlobalLearningResultTable());
23
        super.getComponents().add(new GlobalLearningResultsChartImg());
24
        super.getComponents().add(new 1.5.0/docs/api/java/awt/TextComponent.html">TextComponent());
25
        super.getComponents().add(new GlobalLearningResultsChartYearImg());
26
        super.getComponents().add(new CustomPane());
1814 jmachado 27
    }
28
}