Subversion Repositories bacoAlunos

Rev

Rev 1814 | 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.LearningResultsChartSem;
4
import pt.estgp.estgweb.utils.documentBuilder.CustomPane;
5
import pt.estgp.estgweb.utils.documentBuilder.DocumentSection;
6
import pt.estgp.estgweb.utils.documentBuilder.TextComponent;
7
 
1814 jmachado 8
/**
9
 * Created by jorgemachado on 11/10/17.
10
 */
11
public class LearningAnalysisSection  extends DocumentSection
12
{
1830 jmachado 13
    public LearningAnalysisSection() {
1814 jmachado 14
    }
15
 
1830 jmachado 16
    public LearningAnalysisSection(1.5.0/docs/api/java/lang/String.html">String title)
17
    {
18
        super(title);
19
        super.getComponents().add(new 1.5.0/docs/api/java/awt/TextComponent.html">TextComponent());
20
        super.getComponents().add(new LearningResultsChartSem("S1"));
21
        super.getComponents().add(new LearningResultsChartSem("S2"));
22
        super.getComponents().add(new CustomPane());
1814 jmachado 23
    }
24
}