/**
  * Create and add the unique page to the wizard
  *
  * @see org.eclipse.jface.wizard.Wizard#addPages()
  */
 public void addPages() {
   String description = Messages.CreateNattableFromCatalogWizard_0;
   page = new ChooseNattableConfigWizardPage(description, context);
   page.setTitle(Messages.CreateNattableFromCatalogWizard_1);
   page.setDescription(description);
   addPage(page);
 }