Subversion Repositories bacoAlunos

Rev

Rev 1830 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1814 jmachado 1
package pt.estgp.estgweb.services.courses.coursereport.documentmodel;
2
 
3
/**
4
 * Created by jorgemachado on 11/10/17.
5
 */
6
public class SurveysSection extends DocumentSection
7
{
8
 
9
 
10
    SurveysResultsSection surveysResultsSection = new SurveysResultsSection();
11
 
12
    SurveysAnalysisSection surveysAnalysisSection = new SurveysAnalysisSection();
13
 
14
 
15
 
16
    public SurveysResultsSection getSurveysResultsSection() {
17
        return surveysResultsSection;
18
    }
19
 
20
    public void setSurveysResultsSection(SurveysResultsSection surveysResultsSection) {
21
        this.surveysResultsSection = surveysResultsSection;
22
    }
23
 
24
    public SurveysAnalysisSection getSurveysAnalysisSection() {
25
        return surveysAnalysisSection;
26
    }
27
 
28
    public void setSurveysAnalysisSection(SurveysAnalysisSection surveysAnalysisSection) {
29
        this.surveysAnalysisSection = surveysAnalysisSection;
30
    }
31
}