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.GenericTextSection;
5
import pt.estgp.estgweb.utils.documentBuilder.TextComponent;
6
 
1814 jmachado 7
/**
8
 * Created by jorgemachado on 11/10/17.
9
 */
10
public class SurveysAnalysisSection extends DocumentSection
11
{
12
 
1830 jmachado 13
    public SurveysAnalysisSection() {
1814 jmachado 14
    }
15
 
1830 jmachado 16
    public SurveysAnalysisSection(1.5.0/docs/api/java/lang/String.html">String title) {
17
        super(title);
18
        getComponents().add(new 1.5.0/docs/api/java/awt/TextComponent.html">TextComponent());
1814 jmachado 19
 
1830 jmachado 20
        //4.2.1
21
        getSubSections().add(new GenericTextSection("Análise das UC's"));
22
        //4.2.2
23
        getSubSections().add(new GenericTextSection("Análise das Salas"));
1814 jmachado 24
    }
25
}