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.surveys;
1814 jmachado 2
 
1830 jmachado 3
import pt.estgp.estgweb.utils.documentBuilder.DocumentSection;
4
import pt.estgp.estgweb.utils.documentBuilder.QuestionariosDataTableComponent;
5
 
1814 jmachado 6
/**
7
 * Created by jorgemachado on 11/10/17.
8
 */
9
public class SurveysResultsSection extends DocumentSection
10
{
11
 
1830 jmachado 12
    public SurveysResultsSection() {
1814 jmachado 13
    }
14
 
1830 jmachado 15
    public SurveysResultsSection(1.5.0/docs/api/java/lang/String.html">String title) {
16
        super(title);
17
        getComponents().add(new QuestionariosDataTableComponent("Resultados do 1º Semestre"));
18
        getComponents().add(new QuestionariosDataTableComponent("Resultados do 2º Semestre"));
1814 jmachado 19
    }
20
 
21
 
22
}