Subversion Repositories bacoAlunos

Rev

Rev 1862 | Blame | Compare with Previous | Last modification | View Log | RSS feed

package pt.estgp.estgweb.domain;
// Generated Dec 7, 2017 11:01:13 AM by Hibernate Tools 3.2.0.b9


import java.util.HashSet;
import java.util.Set;

/**
 * SurveyQuestionItem generated by hbm2java
 */

public abstract class SurveyQuestionItem 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 labelpt;
     private 1.5.0/docs/api/java/lang/String.html">String labelen;
     private SurveyQuestion question;
     private Set<SurveyQuestionCandidateAnswer> candidadeAnswers = new HashSet<SurveyQuestionCandidateAnswer>(0);

    public SurveyQuestionItem() {
    }

   
    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 getLabelpt() {
        return this.labelpt;
    }
   
    public void setLabelpt(1.5.0/docs/api/java/lang/String.html">String labelpt) {
        this.labelpt = labelpt;
    }
    public 1.5.0/docs/api/java/lang/String.html">String getLabelen() {
        return this.labelen;
    }
   
    public void setLabelen(1.5.0/docs/api/java/lang/String.html">String labelen) {
        this.labelen = labelen;
    }
    public SurveyQuestion getQuestion() {
        return this.question;
    }
   
    public void setQuestion(SurveyQuestion question) {
        this.question = question;
    }
    public Set<SurveyQuestionCandidateAnswer> getCandidadeAnswers() {
        return this.candidadeAnswers;
    }
   
    public void setCandidadeAnswers(Set<SurveyQuestionCandidateAnswer> candidadeAnswers) {
        this.candidadeAnswers = candidadeAnswers;
    }




}