package edu.harvard.i2b2.crc.datavo.db; // Generated Sep 25, 2006 1:09:02 PM by Hibernate Tools 3.1.0.beta5 import java.util.HashSet; import java.util.Set; /** * QtPatientSetResult generated by hbm2java */ public class QtPatientSetResult implements java.io.Serializable { // Fields private String patientSetResultId; private QtQueryResultInstance qtQueryResultInstance; private Integer setSize; private Set<QtPatientSetCollection> qtPatientSetCollections = new HashSet<QtPatientSetCollection>(0); // Constructors /** default constructor */ public QtPatientSetResult() { } /** minimal constructor */ public QtPatientSetResult(String patientSetResultId) { this.patientSetResultId = patientSetResultId; } /** full constructor */ public QtPatientSetResult(String patientSetResultId, QtQueryResultInstance qtQueryResultInstance, Integer setSize, Set<QtPatientSetCollection> qtPatientSetCollections) { this.patientSetResultId = patientSetResultId; this.qtQueryResultInstance = qtQueryResultInstance; this.setSize = setSize; this.qtPatientSetCollections = qtPatientSetCollections; } // Property accessors public String getPatientSetResultId() { return this.patientSetResultId; } public void setPatientSetResultId(String patientSetResultId) { this.patientSetResultId = patientSetResultId; } public QtQueryResultInstance getQtQueryResultInstance() { return this.qtQueryResultInstance; } public void setQtQueryResultInstance(QtQueryResultInstance qtQueryResultInstance) { this.qtQueryResultInstance = qtQueryResultInstance; } public Integer getSetSize() { return this.setSize; } public void setSetSize(Integer setSize) { this.setSize = setSize; } public Set<QtPatientSetCollection> getQtPatientSetCollections() { return this.qtPatientSetCollections; } public void setQtPatientSetCollections(Set<QtPatientSetCollection> qtPatientSetCollections) { this.qtPatientSetCollections = qtPatientSetCollections; } }