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

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

Introduction

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

Prototype

@Override
    public IWizardPage[] getPages() 

Source Link

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();//  ww  w  .  j  av a 2  s.  c  o m
    final IWizardPage[] pages = wizard.getPages();
    for (final IWizardPage page : pages)
        addPage(page);

    wizard.dispose();
}