public ims.core.vo.beans.CarePlanReviewVoBean[] getBeanCollectionArray() {
   ims.core.vo.beans.CarePlanReviewVoBean[] result =
       new ims.core.vo.beans.CarePlanReviewVoBean[col.size()];
   for (int i = 0; i < col.size(); i++) {
     CarePlanReviewVo vo = ((CarePlanReviewVo) col.get(i));
     result[i] = (ims.core.vo.beans.CarePlanReviewVoBean) vo.getBean();
   }
   return result;
 }
 public int compare(Object obj1, Object obj2) {
   CarePlanReviewVo voObj1 = (CarePlanReviewVo) obj1;
   CarePlanReviewVo voObj2 = (CarePlanReviewVo) obj2;
   return direction * (voObj1.compareTo(voObj2, this.caseInsensitive));
 }