form = new BeanFormWidget(CompanyMO.class);
form.addBeanElement("name", "#Name", new TextControl(), true);
form.addBeanElement("address", "#Address", new TextControl(), true);
if (id != null) {
CompanyMO company = (CompanyMO) getGeneralDAO().getById(CompanyMO.class, id);
form.writeBean(company);
}
addWidget("form", form);
}