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