Subversion Repositories bacoAlunos

Rev

Rev 1616 | Rev 1626 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

package pt.estgp.estgweb.domain;
// Generated 19/Jan/2017 8:47:29 by Hibernate Tools 3.2.0.b9



/**
 * SurveyQuestionAnswer generated by hbm2java
 */

public abstract class SurveyQuestionAnswer extends pt.estgp.estgweb.domain.OwnedDomainObject implements java.io.1.5.0/docs/api/java/io/Serializable.html">Serializable {


     private long id;
     private 1.5.0/docs/api/java/lang/String.html">String textAnswer;
     private SurveyQuestionCandidateAnswer candidateAnswer;
     private SurveyResponse response;

    public SurveyQuestionAnswer() {
    }

   
    public long getId() {
        return this.id;
    }
   
    public void setId(long id) {
        this.id = id;
    }
    public 1.5.0/docs/api/java/lang/String.html">String getTextAnswer() {
        return this.textAnswer;
    }
   
    public void setTextAnswer(1.5.0/docs/api/java/lang/String.html">String textAnswer) {
        this.textAnswer = textAnswer;
    }
    public SurveyQuestionCandidateAnswer getCandidateAnswer() {
        return this.candidateAnswer;
    }
   
    public void setCandidateAnswer(SurveyQuestionCandidateAnswer candidateAnswer) {
        this.candidateAnswer = candidateAnswer;
    }
    public SurveyResponse getResponse() {
        return this.response;
    }
   
    public void setResponse(SurveyResponse response) {
        this.response = response;
    }




}