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