Subversion Repositories bacoAlunos

Rev

Rev 1814 | Rev 1841 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1312 jmachado 1
package pt.estgp.estgweb.domain;
1830 jmachado 2
// Generated 4/nov/2017 9:59:25 by Hibernate Tools 3.2.0.b9
1312 jmachado 3
 
4
 
5
 
6
/**
7
 * SurveyStatsGraphic generated by hbm2java
8
 */
9
public abstract class SurveyStatsGraphic extends pt.estgp.estgweb.domain.OwnedDomainObject implements java.io.1.5.0/docs/api/java/io/Serializable.html">Serializable {
10
 
11
 
12
     private long id;
13
     private 1.5.0/docs/api/java/lang/String.html">String identifier;
14
     private SurveyQuestion question;
15
     private SurveyStructuralNode structuralNode;
16
 
17
    public SurveyStatsGraphic() {
18
    }
19
 
20
 
21
    public long getId() {
22
        return this.id;
23
    }
24
 
25
    public void setId(long id) {
26
        this.id = id;
27
    }
28
    public 1.5.0/docs/api/java/lang/String.html">String getIdentifier() {
29
        return this.identifier;
30
    }
31
 
32
    public void setIdentifier(1.5.0/docs/api/java/lang/String.html">String identifier) {
33
        this.identifier = identifier;
34
    }
35
    public SurveyQuestion getQuestion() {
36
        return this.question;
37
    }
38
 
39
    public void setQuestion(SurveyQuestion question) {
40
        this.question = question;
41
    }
42
    public SurveyStructuralNode getStructuralNode() {
43
        return this.structuralNode;
44
    }
45
 
46
    public void setStructuralNode(SurveyStructuralNode structuralNode) {
47
        this.structuralNode = structuralNode;
48
    }
49
 
50
 
51
 
52
 
53
}
54
 
55