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; /** * QtPatientEncSetResult generated by hbm2java */ public class QtPatientEncSetResult implements java.io.Serializable { // Fields private Integer patientEncSetResultId; private QtQueryResultInstance qtQueryResultInstance; private Integer setSize; private Set<QtPatientEncCollection> qtPatientEncCollections = new HashSet<QtPatientEncCollection>(0); // Constructors /** default constructor */ public QtPatientEncSetResult() { } /** minimal constructor */ public QtPatientEncSetResult(Integer patientEncSetResultId) { this.patientEncSetResultId = patientEncSetResultId; } /** full constructor */ public QtPatientEncSetResult(Integer patientEncSetResultId, QtQueryResultInstance qtQueryResultInstance, Integer setSize, Set<QtPatientEncCollection> qtPatientEncCollections) { this.patientEncSetResultId = patientEncSetResultId; this.qtQueryResultInstance = qtQueryResultInstance; this.setSize = setSize; this.qtPatientEncCollections = qtPatientEncCollections; } // Property accessors public Integer getPatientEncSetResultId() { return this.patientEncSetResultId; } public void setPatientEncSetResultId(Integer patientEncSetResultId) { this.patientEncSetResultId = patientEncSetResultId; } 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<QtPatientEncCollection> getQtPatientEncCollections() { return this.qtPatientEncCollections; } public void setQtPatientEncCollections(Set<QtPatientEncCollection> qtPatientEncCollections) { this.qtPatientEncCollections = qtPatientEncCollections; } }