public void populate(ims.vo.ValueObjectBeanMap map, ims.clinical.vo.EMISAlertsVo vo) { this.alert = vo.getAlert(); this.effectivedate = vo.getEffectiveDate(); this.alerttype = vo.getAlertType(); this.alerttext = vo.getAlertText(); this.confidentialitypolicy = vo.getConfidentialityPolicy(); }
public EMISAlertsVoBean(ims.clinical.vo.EMISAlertsVo vo) { this.alert = vo.getAlert(); this.effectivedate = vo.getEffectiveDate(); this.alerttype = vo.getAlertType(); this.alerttext = vo.getAlertText(); this.confidentialitypolicy = vo.getConfidentialityPolicy(); }
public ims.clinical.vo.EMISAlertsVo buildVo(ims.vo.ValueObjectBeanMap map) { ims.clinical.vo.EMISAlertsVo vo = null; if (map != null) vo = (ims.clinical.vo.EMISAlertsVo) map.getValueObject(this); if (vo == null) { vo = new ims.clinical.vo.EMISAlertsVo(); map.addValueObject(this, vo); vo.populate(map, this); } return vo; }