public static DischargeSupplementaryNotesVoCollection buildFromBeanCollection( ims.clinical.vo.beans.DischargeSupplementaryNotesVoBean[] beans) { DischargeSupplementaryNotesVoCollection coll = new DischargeSupplementaryNotesVoCollection(); if (beans == null) return coll; for (int x = 0; x < beans.length; x++) { coll.add(beans[x].buildVo()); } return coll; }
public static DischargeSupplementaryNotesVoCollection buildFromBeanCollection( java.util.Collection beans) { DischargeSupplementaryNotesVoCollection coll = new DischargeSupplementaryNotesVoCollection(); if (beans == null) return coll; java.util.Iterator iter = beans.iterator(); while (iter.hasNext()) { coll.add(((ims.clinical.vo.beans.DischargeSupplementaryNotesVoBean) iter.next()).buildVo()); } return coll; }