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