firstPage.setDescription("Create a new Java class.");
m_mainPage = firstPage;
addPage(firstPage);
firstPage.setInitialSelection(getSelection());
// create second page: databindings
AutomaticDatabindingSecondPage secondPage =
new AutomaticDatabindingSecondPage(firstPage, databindingProvider, beanClassName);
secondPage.setTitle("Databindings");
secondPage.setDescription("Bind Java Bean to GWT widgets.");
addPage(secondPage);
}
}