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
import java.util.HashSet;
6
import java.util.Set;
7
 
8
/**
9
 * SurveyStructuralNode generated by hbm2java
10
 */
11
public abstract class SurveyStructuralNode extends pt.estgp.estgweb.domain.OwnedDomainObject implements java.io.1.5.0/docs/api/java/io/Serializable.html">Serializable {
12
 
13
 
14
     private long id;
15
     private 1.5.0/docs/api/java/lang/String.html">String msg;
16
     private 1.5.0/docs/api/java/lang/String.html">String msgKey;
17
     private 1.5.0/docs/api/java/lang/String.html">String myKey;
18
     private SurveyStructuralNode parentNode;
19
     private Survey survey;
20
     private Set<SurveyStructuralNode> nodes = new HashSet<SurveyStructuralNode>(0);
21
     private Set<SurveyResponse> responses = new HashSet<SurveyResponse>(0);
22
     private Set<SurveyStatsGraphic> graphics = new HashSet<SurveyStatsGraphic>(0);
23
 
24
    public SurveyStructuralNode() {
25
    }
26
 
27
 
28
    public long getId() {
29
        return this.id;
30
    }
31
 
32
    public void setId(long id) {
33
        this.id = id;
34
    }
35
    public 1.5.0/docs/api/java/lang/String.html">String getMsg() {
36
        return this.msg;
37
    }
38
 
39
    public void setMsg(1.5.0/docs/api/java/lang/String.html">String msg) {
40
        this.msg = msg;
41
    }
42
    public 1.5.0/docs/api/java/lang/String.html">String getMsgKey() {
43
        return this.msgKey;
44
    }
45
 
46
    public void setMsgKey(1.5.0/docs/api/java/lang/String.html">String msgKey) {
47
        this.msgKey = msgKey;
48
    }
49
    public 1.5.0/docs/api/java/lang/String.html">String getMyKey() {
50
        return this.myKey;
51
    }
52
 
53
    public void setMyKey(1.5.0/docs/api/java/lang/String.html">String myKey) {
54
        this.myKey = myKey;
55
    }
56
    public SurveyStructuralNode getParentNode() {
57
        return this.parentNode;
58
    }
59
 
60
    public void setParentNode(SurveyStructuralNode parentNode) {
61
        this.parentNode = parentNode;
62
    }
63
    public Survey getSurvey() {
64
        return this.survey;
65
    }
66
 
67
    public void setSurvey(Survey survey) {
68
        this.survey = survey;
69
    }
70
    public Set<SurveyStructuralNode> getNodes() {
71
        return this.nodes;
72
    }
73
 
74
    public void setNodes(Set<SurveyStructuralNode> nodes) {
75
        this.nodes = nodes;
76
    }
77
    public Set<SurveyResponse> getResponses() {
78
        return this.responses;
79
    }
80
 
81
    public void setResponses(Set<SurveyResponse> responses) {
82
        this.responses = responses;
83
    }
84
    public Set<SurveyStatsGraphic> getGraphics() {
85
        return this.graphics;
86
    }
87
 
88
    public void setGraphics(Set<SurveyStatsGraphic> graphics) {
89
        this.graphics = graphics;
90
    }
91
 
92
 
93
 
94
 
95
}
96
 
97