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