IWizardPage没有出现

时间:2014-12-31 13:46:50

标签: java eclipse eclipse-plugin

我有一个现有的向导,我正在添加一个页面...但是,当我添加它时,新页面不会出现。

这是向导中的addPages方法..新页面是dsPage

/**
 * Adding the pages to the wizard.
 */
public void addPages() {
    templatePage = new StoreBuildDetailsPage(selection, helpUrl);
    addPage(templatePage);
    jenkinsPage = new StoreJenkinsDialog(selection);
    addPage(jenkinsPage);
    dsPage = new StoreDataSourcePage(selection);
    addPage(dsPage);
    deploymentPage = new StoreDeploymentDetailsPage(helpUrl);
    addPage(deploymentPage);
}

这是我为dsPage创建的新类

public class StoreDataSourcePage extends  WizardPage 

我在做什么/不做什么不显示?

覆盖getNextPage

/**
 * grabs the data from this page to pass to the next pages
 */
public IWizardPage getNextPage(){
    saveData();     
    return super.getNextPage();
}

0 个答案:

没有答案