Subversion Repositories bacoAlunos

Rev

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

package pt.estgp.estgweb.domain;
// Generated 4/nov/2017 19:35:42 by Hibernate Tools 3.2.0.b9


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

/**
 * SurveyQuestion generated by hbm2java
 */

public abstract class SurveyQuestion 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 boolean required;
     private 1.5.0/docs/api/java/lang/String.html">String type;
     private Survey survey;
     private Set<SurveyQuestionItem> questionItems = new HashSet<SurveyQuestionItem>(0);
     private Set<SurveyStatsGraphic> graphics = new HashSet<SurveyStatsGraphic>(0);

    public SurveyQuestion() {
    }

   
    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 boolean isRequired() {
        return this.required;
    }
   
    public void setRequired(boolean required) {
        this.required = required;
    }
    public 1.5.0/docs/api/java/lang/String.html">String getType() {
        return this.type;
    }
   
    public void setType(1.5.0/docs/api/java/lang/String.html">String type) {
        this.type = type;
    }
    public Survey getSurvey() {
        return this.survey;
    }
   
    public void setSurvey(Survey survey) {
        this.survey = survey;
    }
    public Set<SurveyQuestionItem> getQuestionItems() {
        return this.questionItems;
    }
   
    public void setQuestionItems(Set<SurveyQuestionItem> questionItems) {
        this.questionItems = questionItems;
    }
    public Set<SurveyStatsGraphic> getGraphics() {
        return this.graphics;
    }
   
    public void setGraphics(Set<SurveyStatsGraphic> graphics) {
        this.graphics = graphics;
    }




}