Subversion Repositories bacoAlunos

Rev

Rev 1616 | Rev 1626 | 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;
1619 jmachado 2
// Generated 19/Jan/2017 8:47:29 by Hibernate Tools 3.2.0.b9
1312 jmachado 3
 
4
 
5
import java.util.HashSet;
6
import java.util.Set;
7
 
8
/**
9
 * AssessmentQuestionPossibleAnswer generated by hbm2java
10
 */
11
public abstract class AssessmentQuestionPossibleAnswer 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 textpt;
16
     private 1.5.0/docs/api/java/lang/String.html">String texten;
17
     private double quotation;
18
     private boolean correct;
19
     private AssessmentQuestionItem questionItem;
20
     private Set<AssessmentQuestionAnswer> answers = new HashSet<AssessmentQuestionAnswer>(0);
21
 
22
    public AssessmentQuestionPossibleAnswer() {
23
    }
24
 
25
 
26
    public long getId() {
27
        return this.id;
28
    }
29
 
30
    public void setId(long id) {
31
        this.id = id;
32
    }
33
    public 1.5.0/docs/api/java/lang/String.html">String getTextpt() {
34
        return this.textpt;
35
    }
36
 
37
    public void setTextpt(1.5.0/docs/api/java/lang/String.html">String textpt) {
38
        this.textpt = textpt;
39
    }
40
    public 1.5.0/docs/api/java/lang/String.html">String getTexten() {
41
        return this.texten;
42
    }
43
 
44
    public void setTexten(1.5.0/docs/api/java/lang/String.html">String texten) {
45
        this.texten = texten;
46
    }
47
    public double getQuotation() {
48
        return this.quotation;
49
    }
50
 
51
    public void setQuotation(double quotation) {
52
        this.quotation = quotation;
53
    }
54
    public boolean isCorrect() {
55
        return this.correct;
56
    }
57
 
58
    public void setCorrect(boolean correct) {
59
        this.correct = correct;
60
    }
61
    public AssessmentQuestionItem getQuestionItem() {
62
        return this.questionItem;
63
    }
64
 
65
    public void setQuestionItem(AssessmentQuestionItem questionItem) {
66
        this.questionItem = questionItem;
67
    }
68
    public Set<AssessmentQuestionAnswer> getAnswers() {
69
        return this.answers;
70
    }
71
 
72
    public void setAnswers(Set<AssessmentQuestionAnswer> answers) {
73
        this.answers = answers;
74
    }
75
 
76
 
77
 
78
 
79
}
80
 
81