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