/* (non-Javadoc)
  * @see org.eclipse.jface.wizard.IWizardPage#getNextPage()
  * It makes all the setting before go to the next page
  */
 public IWizardPage getNextPage() {
   indication.setName(txtName.getText());
   indication.setDescription(txtDescription.getText());
   if (wizard.newIndication) wizard.mainPage.setChanged(true);
   else wizard.mainPage.setChanged(false);
   wizard.mainPage.onEnterPage();
   return wizard.mainPage;
 }