VerticalPanel layout = new VerticalPanel();
layout.setStyleName("window-content");
final Form<Topic> form = new Form<Topic>(Topic.class);
TextBoxItem name = new TextBoxItem("name", "Name");
ListItem jndiName = new JndiNamesItem("entries", "JNDI Names");
form.setFields(name, jndiName);
final FormHelpPanel helpPanel = new FormHelpPanel(
new FormHelpPanel.AddressCallback() {