Subversion Repositories bacoAlunos

Rev

Rev 1926 | 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;
1984 grupo3 2
// Generated 29/jan/2018 12:57:33 by Hibernate Tools 3.2.0.b9
1312 jmachado 3
 
4
 
5
import java.util.HashSet;
6
import java.util.Set;
7
 
8
/**
9
 * SurveyQuestionItem generated by hbm2java
10
 */
11
public abstract class SurveyQuestionItem 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 SurveyQuestion question;
18
     private Set<SurveyQuestionCandidateAnswer> candidadeAnswers = new HashSet<SurveyQuestionCandidateAnswer>(0);
19
 
20
    public SurveyQuestionItem() {
21
    }
22
 
23
 
24
    public long getId() {
25
        return this.id;
26
    }
27
 
28
    public void setId(long id) {
29
        this.id = id;
30
    }
31
    public 1.5.0/docs/api/java/lang/String.html">String getLabelpt() {
32
        return this.labelpt;
33
    }
34
 
35
    public void setLabelpt(1.5.0/docs/api/java/lang/String.html">String labelpt) {
36
        this.labelpt = labelpt;
37
    }
38
    public 1.5.0/docs/api/java/lang/String.html">String getLabelen() {
39
        return this.labelen;
40
    }
41
 
42
    public void setLabelen(1.5.0/docs/api/java/lang/String.html">String labelen) {
43
        this.labelen = labelen;
44
    }
45
    public SurveyQuestion getQuestion() {
46
        return this.question;
47
    }
48
 
49
    public void setQuestion(SurveyQuestion question) {
50
        this.question = question;
51
    }
52
    public Set<SurveyQuestionCandidateAnswer> getCandidadeAnswers() {
53
        return this.candidadeAnswers;
54
    }
55
 
56
    public void setCandidadeAnswers(Set<SurveyQuestionCandidateAnswer> candidadeAnswers) {
57
        this.candidadeAnswers = candidadeAnswers;
58
    }
59
 
60
 
61
 
62
 
63
}
64
 
65