public ims.emergency.vo.TrackingAreaForTrackingVo buildVo(ims.vo.ValueObjectBeanMap map) {
   ims.emergency.vo.TrackingAreaForTrackingVo vo = null;
   if (map != null) vo = (ims.emergency.vo.TrackingAreaForTrackingVo) map.getValueObject(this);
   if (vo == null) {
     vo = new ims.emergency.vo.TrackingAreaForTrackingVo();
     map.addValueObject(this, vo);
     vo.populate(map, this);
   }
   return vo;
 }
 public void populate(
     ims.vo.ValueObjectBeanMap map, ims.emergency.vo.TrackingAreaForTrackingVo vo) {
   this.id = vo.getBoId();
   this.version = vo.getBoVersion();
   this.edlocation =
       vo.getEDLocation() == null
           ? null
           : new ims.vo.RefVoBean(vo.getEDLocation().getBoId(), vo.getEDLocation().getBoVersion());
   this.areanamedescription = vo.getAreaNameDescription();
   this.areadisplayname = vo.getAreaDisplayName();
   this.status =
       vo.getStatus() == null ? null : (ims.vo.LookupInstanceBean) vo.getStatus().getBean();
   this.isoverallview = vo.getIsOverallView();
   this.isregistrationarea = vo.getIsRegistrationArea();
   this.columns = vo.getColumns() == null ? null : vo.getColumns().getBeanCollection();
   this.patientrefreshrate = vo.getPatientRefreshRate();
 }