public void populate(
     ims.vo.ValueObjectBeanMap map, ims.clinicaladmin.vo.TreatmentInterventionHotlistShortVo vo) {
   this.id = vo.getBoId();
   this.version = vo.getBoVersion();
   this.specialty =
       vo.getSpecialty() == null ? null : (ims.vo.LookupInstanceBean) vo.getSpecialty().getBean();
 }
 public TreatmentInterventionHotlistShortVoBean(
     ims.clinicaladmin.vo.TreatmentInterventionHotlistShortVo vo) {
   this.id = vo.getBoId();
   this.version = vo.getBoVersion();
   this.specialty =
       vo.getSpecialty() == null ? null : (ims.vo.LookupInstanceBean) vo.getSpecialty().getBean();
 }
 public ims.clinicaladmin.vo.TreatmentInterventionHotlistShortVo buildVo(
     ims.vo.ValueObjectBeanMap map) {
   ims.clinicaladmin.vo.TreatmentInterventionHotlistShortVo vo = null;
   if (map != null)
     vo = (ims.clinicaladmin.vo.TreatmentInterventionHotlistShortVo) map.getValueObject(this);
   if (vo == null) {
     vo = new ims.clinicaladmin.vo.TreatmentInterventionHotlistShortVo();
     map.addValueObject(this, vo);
     vo.populate(map, this);
   }
   return vo;
 }