Subversion Repositories bacoAlunos

Rev

Rev 1830 | 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;
1841 jmachado 2
// Generated 4/nov/2017 18:59:19 by Hibernate Tools 3.2.0.b9
1312 jmachado 3
 
4
 
5
import java.util.HashSet;
6
import java.util.Set;
7
 
8
/**
9
 * SurveyQuestionCandidateAnswer generated by hbm2java
10
 */
11
public abstract class SurveyQuestionCandidateAnswer 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 labelpt;
16
     private 1.5.0/docs/api/java/lang/String.html">String labelen;
17
     private 1.5.0/docs/api/java/lang/String.html">String type;
18
     private SurveyQuestionItem questionItem;
19
     private Set<SurveyQuestionAnswer> answers = new HashSet<SurveyQuestionAnswer>(0);
20
 
21
    public SurveyQuestionCandidateAnswer() {
22
    }
23
 
24
 
25
    public long getId() {
26
        return this.id;
27
    }
28
 
29
    public void setId(long id) {
30
        this.id = id;
31
    }
32
    public 1.5.0/docs/api/java/lang/String.html">String getLabelpt() {
33
        return this.labelpt;
34
    }
35
 
36
    public void setLabelpt(1.5.0/docs/api/java/lang/String.html">String labelpt) {
37
        this.labelpt = labelpt;
38
    }
39
    public 1.5.0/docs/api/java/lang/String.html">String getLabelen() {
40
        return this.labelen;
41
    }
42
 
43
    public void setLabelen(1.5.0/docs/api/java/lang/String.html">String labelen) {
44
        this.labelen = labelen;
45
    }
46
    public 1.5.0/docs/api/java/lang/String.html">String getType() {
47
        return this.type;
48
    }
49
 
50
    public void setType(1.5.0/docs/api/java/lang/String.html">String type) {
51
        this.type = type;
52
    }
53
    public SurveyQuestionItem getQuestionItem() {
54
        return this.questionItem;
55
    }
56
 
57
    public void setQuestionItem(SurveyQuestionItem questionItem) {
58
        this.questionItem = questionItem;
59
    }
60
    public Set<SurveyQuestionAnswer> getAnswers() {
61
        return this.answers;
62
    }
63
 
64
    public void setAnswers(Set<SurveyQuestionAnswer> answers) {
65
        this.answers = answers;
66
    }
67
 
68
 
69
 
70
 
71
}
72
 
73