Subversion Repositories bacoAlunos

Rev

Rev 1814 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1814 Rev 1830
Line 1... Line 1...
1
package pt.estgp.estgweb.services.courses.coursereport.documentmodel;
1
package pt.estgp.estgweb.services.courses.coursereport.documentmodel.surveys;
-
 
2
 
-
 
3
import pt.estgp.estgweb.utils.documentBuilder.DocumentSection;
-
 
4
import pt.estgp.estgweb.utils.documentBuilder.GenericTextSection;
-
 
5
import pt.estgp.estgweb.utils.documentBuilder.TextComponent;
2
 
6
 
3
/**
7
/**
4
 * Created by jorgemachado on 11/10/17.
8
 * Created by jorgemachado on 11/10/17.
5
 */
9
 */
6
public class SurveysAnalysisSection extends DocumentSection
10
public class SurveysAnalysisSection extends DocumentSection
7
{
11
{
8
    1.5.0/docs/api/java/awt/TextComponent.html">TextComponent textComponent = new 1.5.0/docs/api/java/awt/TextComponent.html">TextComponent();
-
 
9
 
-
 
10
    GenericTextSection unitsResultsSubSection = new GenericTextSection();
-
 
11
    GenericTextSection roomsResultsSubSection = new GenericTextSection();
-
 
12
 
12
 
13
    public 1.5.0/docs/api/java/awt/TextComponent.html">TextComponent getTextComponent() {
13
    public SurveysAnalysisSection() {
14
        return textComponent;
-
 
15
    }
14
    }
16
 
15
 
17
    public void setTextComponent(1.5.0/docs/api/java/awt/TextComponent.html">TextComponent textComponent) {
-
 
18
        this.textComponent = textComponent;
-
 
19
    }
-
 
20
 
-
 
21
    public GenericTextSection getUnitsResultsSubSection() {
16
    public SurveysAnalysisSection(1.5.0/docs/api/java/lang/String.html">String title) {
22
        return unitsResultsSubSection;
17
        super(title);
23
    }
-
 
24
 
-
 
25
    public void setUnitsResultsSubSection(GenericTextSection unitsResultsSubSection) {
-
 
26
        this.unitsResultsSubSection = unitsResultsSubSection;
-
 
27
    }
-
 
28
 
-
 
29
    public GenericTextSection getRoomsResultsSubSection() {
-
 
30
        return roomsResultsSubSection;
18
        getComponents().add(new 1.5.0/docs/api/java/awt/TextComponent.html">TextComponent());
31
    }
-
 
32
 
19
 
-
 
20
        //4.2.1
33
    public void setRoomsResultsSubSection(GenericTextSection roomsResultsSubSection) {
21
        getSubSections().add(new GenericTextSection("AnĂ¡lise das UC's"));
-
 
22
        //4.2.2
34
        this.roomsResultsSubSection = roomsResultsSubSection;
23
        getSubSections().add(new GenericTextSection("AnĂ¡lise das Salas"));
35
    }
24
    }
36
}
25
}