本文整理了Java中org.eclipse.jface.wizard.Wizard.getStartingPage()
方法的一些代码示例,展示了Wizard.getStartingPage()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Wizard.getStartingPage()
方法的具体详情如下:
包路径:org.eclipse.jface.wizard.Wizard
类名称:Wizard
方法名:getStartingPage
暂无
代码示例来源:origin: org.eclipse/org.eclipse.team.ui
public IWizardPage getStartingPage() {
if(importWizard != null) {
return importWizard.getStartingPage();
}
return super.getStartingPage();
}
代码示例来源:origin: org.eclipse.platform/org.eclipse.team.ui
@Override
public IWizardPage getStartingPage() {
if(importWizard != null) {
return importWizard.getStartingPage();
}
return super.getStartingPage();
}
代码示例来源:origin: org.eclipse.egit/ui
@Override
public IWizardPage getStartingPage() {
// only now do we set the selection (which will be progress-monitored by
// the wizard)
page.setSelection(new RepositorySelection(null, config));
return super.getStartingPage();
}
代码示例来源:origin: org.eclipse/org.eclipse.ltk.ui.refactoring
/**
* {@inheritDoc}
*/
public IWizardPage getStartingPage() {
if (hasUserInput())
return super.getStartingPage();
/*
* XXX: Can return null if there's no user input page and change creation has been cancelled.
* The only way to avoid this would be setChangeCreationCancelable(true).
*/
return computeUserInputSuccessorPage(null, PlatformUI.getWorkbench().getActiveWorkbenchWindow());
}
内容来源于网络,如有侵权,请联系作者删除!