Subversion Repositories bacoAlunos

Rev

Rev 1910 | Rev 1917 | 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;
1915 grupo3 2
// Generated 13/dez/2017 16:54:32 by Hibernate Tools 3.2.0.b9
1312 jmachado 3
 
4
 
5
 
6
/**
7
 * AssessmentQuestionAnswer generated by hbm2java
8
 */
9
public abstract class AssessmentQuestionAnswer 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 textAnswer;
14
     private 1.5.0/docs/api/java/lang/String.html">String identifier;
15
     private 1.5.0/docs/api/java/lang/String.html">String note;
16
     private double quotation;
17
     private boolean evaluated;
18
     private AssessmentQuestionPossibleAnswer possibleAnswer;
19
     private AssessmentResponse response;
20
 
21
    public AssessmentQuestionAnswer() {
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 getTextAnswer() {
33
        return this.textAnswer;
34
    }
35
 
36
    public void setTextAnswer(1.5.0/docs/api/java/lang/String.html">String textAnswer) {
37
        this.textAnswer = textAnswer;
38
    }
39
    public 1.5.0/docs/api/java/lang/String.html">String getIdentifier() {
40
        return this.identifier;
41
    }
42
 
43
    public void setIdentifier(1.5.0/docs/api/java/lang/String.html">String identifier) {
44
        this.identifier = identifier;
45
    }
46
    public 1.5.0/docs/api/java/lang/String.html">String getNote() {
47
        return this.note;
48
    }
49
 
50
    public void setNote(1.5.0/docs/api/java/lang/String.html">String note) {
51
        this.note = note;
52
    }
53
    public double getQuotation() {
54
        return this.quotation;
55
    }
56
 
57
    public void setQuotation(double quotation) {
58
        this.quotation = quotation;
59
    }
60
    public boolean isEvaluated() {
61
        return this.evaluated;
62
    }
63
 
64
    public void setEvaluated(boolean evaluated) {
65
        this.evaluated = evaluated;
66
    }
67
    public AssessmentQuestionPossibleAnswer getPossibleAnswer() {
68
        return this.possibleAnswer;
69
    }
70
 
71
    public void setPossibleAnswer(AssessmentQuestionPossibleAnswer possibleAnswer) {
72
        this.possibleAnswer = possibleAnswer;
73
    }
74
    public AssessmentResponse getResponse() {
75
        return this.response;
76
    }
77
 
78
    public void setResponse(AssessmentResponse response) {
79
        this.response = response;
80
    }
81
 
82
 
83
 
84
 
85
}
86
 
87