public ims.clinicaladmin.vo.ProblemHotlistVo buildVo(ims.vo.ValueObjectBeanMap map) {
   ims.clinicaladmin.vo.ProblemHotlistVo vo = null;
   if (map != null) vo = (ims.clinicaladmin.vo.ProblemHotlistVo) map.getValueObject(this);
   if (vo == null) {
     vo = new ims.clinicaladmin.vo.ProblemHotlistVo();
     map.addValueObject(this, vo);
     vo.populate(map, this);
   }
   return vo;
 }
 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();
 }