use of com.revolsys.ui.html.form.UiBuilderObjectForm in project com.revolsys.open by revolsys.
the class HtmlUiBuilder method newTableForm.
@SuppressWarnings("unchecked")
public <F extends Form> F newTableForm(final Object object, final String keyListName) {
final List<String> keyList = getKeyList(keyListName);
final UiBuilderObjectForm form = new UiBuilderObjectForm(object, this, getTypeName(), keyList);
return (F) form;
}
Aggregations