this is the TOperand class:
package wlcresepsjon; // Generated 08.mai.2009 12:23:28 by Hibernate Tools 3.2.1.GA
import java.util.HashSet; import java.util.Set;
/** * TOperands generated by hbm2java */ public class TOperands implements java.io.Serializable {
private int id; private String op; private String comment; private Set<TRadreply> TRadreplies = new HashSet<TRadreply>(0);
public TOperands() { }
public TOperands(int id, String op) { this.id = id; this.op = op; } public TOperands(int id, String op, String comment, Set<TRadreply> TRadreplies) { this.id = id; this.op = op; this.comment = comment; this.TRadreplies = TRadreplies; }
public int getId() { return this.id; } public void setId(int id) { this.id = id; } public String getOp() { return this.op; } public void setOp(String op) { this.op = op; } public String getComment() { return this.comment; } public void setComment(String comment) { this.comment = comment; } public Set<TRadreply> getTRadreplies() { return this.TRadreplies; } public void setTRadreplies(Set<TRadreply> TRadreplies) { this.TRadreplies = TRadreplies; }
}
thanks for all help! :)
|