コード例 #1
0
 public void populate(ims.vo.ValueObjectBeanMap map, ims.core.vo.ClinicalTeamVo vo) {
   this.id = vo.getBoId();
   this.version = vo.getBoVersion();
   this.teamname = vo.getTeamName();
   this.teamtype =
       vo.getTeamType() == null ? null : (ims.vo.LookupInstanceBean) vo.getTeamType().getBean();
   this.teammembers = vo.getTeamMembers() == null ? null : vo.getTeamMembers().getBeanCollection();
   this.leadhcp =
       vo.getLeadHCP() == null
           ? null
           : (ims.core.vo.beans.HcpLiteVoBean) vo.getLeadHCP().getBean(map);
   this.isactive = vo.getIsActive();
 }