public class FormsViewGwtImpl extends DetailViewGwtImpl implements FormsView {
public FormsViewGwtImpl() {
FlowPanel container = new FlowPanel();
Form widgetList = new Form();
widgetList.setHeader(new Label("Contact Data"));
// lets put in some widgets
widgetList.add(new FormEntry("Firstname", new MTextBox()));
widgetList.add(new FormEntry("Lastname", new MTextBox()));
widgetList.add(new FormEntry("Job Title", new MTextBox()));
container.add(widgetList);
scrollPanel.setScrollingEnabledX(false);
scrollPanel.setWidget(container);