public void populate(ims.vo.ValueObjectBeanMap map, ims.admin.vo.beans.AppNavShortVoBean bean) { this.id = bean.getId(); this.version = bean.getVersion(); this.navigationname = bean.getNavigationName(); this.isactive = bean.getIsActive(); this.comment = bean.getComment(); }
public AppNavShortVo(ims.admin.vo.beans.AppNavShortVoBean bean) { this.id = bean.getId(); this.version = bean.getVersion(); this.navigationname = bean.getNavigationName(); this.isactive = bean.getIsActive(); this.comment = bean.getComment(); }
public ims.vo.ValueObjectBean getBean(ims.vo.ValueObjectBeanMap map) { ims.admin.vo.beans.AppNavShortVoBean bean = null; if (map != null) bean = (ims.admin.vo.beans.AppNavShortVoBean) map.getValueObjectBean(this); if (bean == null) { bean = new ims.admin.vo.beans.AppNavShortVoBean(); map.addValueObjectBean(this, bean); bean.populate(map, this); } return bean; }