Example usage for org.eclipse.jface.wizard Wizard dispose

List of usage examples for org.eclipse.jface.wizard Wizard dispose

Introduction

In this page you can find the example usage for org.eclipse.jface.wizard Wizard dispose.

Prototype

@Override
public void dispose() 

Source Link

Document

The Wizard implementation of this IWizard method disposes all the pages controls using DialogPage.dispose.

Usage

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();
}