List of usage examples for org.eclipse.jface.wizard Wizard dispose
@Override public void dispose()
Wizard implementation of this IWizard method disposes all the pages controls using DialogPage.dispose. From source file:org.kalypso.model.wspm.pdb.ui.internal.wspm.CheckinWspmWizard.java
License:Open Source License
@Override public void addPages() { addPage(new ConnectionChooserPage("connectionChooser", m_settingsData)); //$NON-NLS-1$ /* Steal pages from worker wizard */ final Wizard wizard = m_worker.createWizard(); wizard.addPages();/* w w w. jav a 2 s. c o m*/ final IWizardPage[] pages = wizard.getPages(); for (final IWizardPage page : pages) addPage(page); wizard.dispose(); }