Subversion Repositories bacoAlunos

Rev

Rev 1843 | Rev 1927 | Go to most recent revision | 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;

/**
 * SurveyStructuralNode generated by hbm2java
 */

public abstract class SurveyStructuralNode 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 msg;
     private 1.5.0/docs/api/java/lang/String.html">String msgKey;
     private 1.5.0/docs/api/java/lang/String.html">String myKey;
     private SurveyStructuralNode parentNode;
     private Survey survey;
     private Set<SurveyStructuralNode> nodes = new HashSet<SurveyStructuralNode>(0);
     private Set<SurveyResponse> responses = new HashSet<SurveyResponse>(0);
     private Set<SurveyStatsGraphic> graphics = new HashSet<SurveyStatsGraphic>(0);

    public SurveyStructuralNode() {
    }

   
    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 getMsg() {
        return this.msg;
    }
   
    public void setMsg(1.5.0/docs/api/java/lang/String.html">String msg) {
        this.msg = msg;
    }
    public 1.5.0/docs/api/java/lang/String.html">String getMsgKey() {
        return this.msgKey;
    }
   
    public void setMsgKey(1.5.0/docs/api/java/lang/String.html">String msgKey) {
        this.msgKey = msgKey;
    }
    public 1.5.0/docs/api/java/lang/String.html">String getMyKey() {
        return this.myKey;
    }
   
    public void setMyKey(1.5.0/docs/api/java/lang/String.html">String myKey) {
        this.myKey = myKey;
    }
    public SurveyStructuralNode getParentNode() {
        return this.parentNode;
    }
   
    public void setParentNode(SurveyStructuralNode parentNode) {
        this.parentNode = parentNode;
    }
    public Survey getSurvey() {
        return this.survey;
    }
   
    public void setSurvey(Survey survey) {
        this.survey = survey;
    }
    public Set<SurveyStructuralNode> getNodes() {
        return this.nodes;
    }
   
    public void setNodes(Set<SurveyStructuralNode> nodes) {
        this.nodes = nodes;
    }
    public Set<SurveyResponse> getResponses() {
        return this.responses;
    }
   
    public void setResponses(Set<SurveyResponse> responses) {
        this.responses = responses;
    }
    public Set<SurveyStatsGraphic> getGraphics() {
        return this.graphics;
    }
   
    public void setGraphics(Set<SurveyStatsGraphic> graphics) {
        this.graphics = graphics;
    }




}