public void populate(ims.vo.ValueObjectBeanMap map, ims.clinicaladmin.vo.ProblemHotlistVo vo) {
   this.id = vo.getBoId();
   this.version = vo.getBoVersion();
   this.isglobal = vo.getIsGlobal();
   this.user =
       vo.getUser() == null
           ? null
           : new ims.vo.RefVoBean(vo.getUser().getBoId(), vo.getUser().getBoVersion());
   this.specialty =
       vo.getSpecialty() == null ? null : (ims.vo.LookupInstanceBean) vo.getSpecialty().getBean();
   this.hotlistitems =
       vo.getHotlistItems() == null ? null : vo.getHotlistItems().getBeanCollection();
 }