public void populate(ims.vo.ValueObjectBeanMap map, ims.nursing.vo.CarePlanTitle vo) {
   this.id = vo.getBoId();
   this.version = vo.getBoVersion();
   this.title = vo.getTitle();
   this.currentcareplanstatus =
       vo.getCurrentCarePlanStatus() == null
           ? null
           : (ims.nursing.vo.beans.CarePlanStatusBean) vo.getCurrentCarePlanStatus().getBean(map);
 }
 public CarePlanTitleBean(ims.nursing.vo.CarePlanTitle vo) {
   this.id = vo.getBoId();
   this.version = vo.getBoVersion();
   this.title = vo.getTitle();
   this.currentcareplanstatus =
       vo.getCurrentCarePlanStatus() == null
           ? null
           : (ims.nursing.vo.beans.CarePlanStatusBean) vo.getCurrentCarePlanStatus().getBean();
 }
 public ims.nursing.vo.CarePlanTitle buildVo(ims.vo.ValueObjectBeanMap map) {
   ims.nursing.vo.CarePlanTitle vo = null;
   if (map != null) vo = (ims.nursing.vo.CarePlanTitle) map.getValueObject(this);
   if (vo == null) {
     vo = new ims.nursing.vo.CarePlanTitle();
     map.addValueObject(this, vo);
     vo.populate(map, this);
   }
   return vo;
 }