org.eclipse.jface.wizard.Wizard.addPage()方法的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(4.7k)|赞(0)|评价(0)|浏览(136)

本文整理了Java中org.eclipse.jface.wizard.Wizard.addPage()方法的一些代码示例,展示了Wizard.addPage()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Wizard.addPage()方法的具体详情如下:
包路径:org.eclipse.jface.wizard.Wizard
类名称:Wizard
方法名:addPage

Wizard.addPage介绍

[英]Adds a new page to this wizard. The page is inserted at the end of the page list.
[中]将新页面添加到此向导。页面将插入到页面列表的末尾。

代码示例

代码示例来源:origin: pentaho/pentaho-kettle

wizard.addPage( page1 );
wizard.addPage( pageoci );
wizard.addPage( pageodbc );
wizard.addPage( pagejdbc );
wizard.addPage( pageoracle );
wizard.addPage( pageifx );
wizard.addPage( pageGeneric );
for ( WizardPage page : additionalPages ) {
 wizard.addPage( page );
wizard.addPage( page2 );

代码示例来源:origin: pentaho/pentaho-kettle

wizard.addPage( page1 );
wizard.addPage( page2 );

代码示例来源:origin: pentaho/pentaho-kettle

wizard.addPage( page1 );
wizard.addPage( page2 );
wizard.addPage( page3 );

代码示例来源:origin: pentaho/pentaho-kettle

wizard.addPage( page1 );
wizard.addPage( page2 );

代码示例来源:origin: pentaho/pentaho-kettle

wizard.addPage( page1 );
wizard.addPage( page2 );

代码示例来源:origin: pentaho/pentaho-kettle

wizard.addPage( page1 );
wizard.addPage( page2 );

代码示例来源:origin: org.eclipse/org.eclipse.jst.pagedesigner

public void addPages() {
  super.addPage(page);
}

代码示例来源:origin: org.eclipse/org.eclipse.ltk.ui.refactoring

/**
 * {@inheritDoc}
 * 
 * Clients must contribute their wizard pages by re-implementing
 * {@link #addUserDefinedPages()}.
 */
public final void addPage(final IWizardPage page) {
  Assert.isTrue(fInAddPages);
  super.addPage(page);
}

代码示例来源:origin: org.eclipse/org.eclipse.ltk.ui.refactoring

/**
 * {@inheritDoc}
 * 
 * This method asserts that the pages added to the refactoring wizard
 * are instances of type {@link RefactoringWizardPage}.
 */
public final void addPage(IWizardPage page) {
  Assert.isTrue(page instanceof RefactoringWizardPage && fInAddPages);
  super.addPage(page);
}

代码示例来源:origin: org.eclipse/org.eclipse.ajdt.ui

public void addPages() {
  fJTWPage = new AJdocTreeWizardPage(TREE_PAGE_DESC, fStore);
  fJSWPage = new AJdocSpecificsWizardPage(SPECIFICS_PAGE_DESC,fJTWPage, fStore);
  fJSpWPage= new AJdocStandardWizardPage(STANDARD_PAGE_DESC, fJTWPage, fStore);
  super.addPage(fJTWPage);
  super.addPage(fJSWPage);
  super.addPage(fJSpWPage);
  
  fJTWPage.init();
  fJSWPage.init();
  fJSpWPage.init();
}

代码示例来源:origin: org.eclipse/org.eclipse.jdt.ui

public void addPages() {
  
  fJTWPage= new JavadocTreeWizardPage(TREE_PAGE_DESC, fStore);
  fJSWPage= new JavadocSpecificsWizardPage(SPECIFICS_PAGE_DESC, fJTWPage, fStore);
  fJSpWPage= new JavadocStandardWizardPage(STANDARD_PAGE_DESC, fJTWPage, fStore);
  super.addPage(fJTWPage);
  super.addPage(fJSpWPage);
  super.addPage(fJSWPage);
  fJTWPage.init();
  fJSpWPage.init();
  fJSWPage.init();
}

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.ui

@Override
public void addPages() {
  fContributedJavadocWizardPages= ContributedJavadocWizardPage.getContributedPages(fStore);
  fTreeWizardPage= new JavadocTreeWizardPage(TREE_PAGE_DESC, fStore);
  fLastWizardPage= new JavadocSpecificsWizardPage(SPECIFICS_PAGE_DESC, fTreeWizardPage, fStore);
  fStandardDocletWizardPage= new JavadocStandardWizardPage(STANDARD_PAGE_DESC, fTreeWizardPage, fStore);
  super.addPage(fTreeWizardPage);
  super.addPage(fStandardDocletWizardPage);
  for (int i= 0; i < fContributedJavadocWizardPages.length; i++) {
    super.addPage(fContributedJavadocWizardPages[i]);
  }
  super.addPage(fLastWizardPage);
  fTreeWizardPage.init();
  fStandardDocletWizardPage.init();
  fLastWizardPage.init();
}

代码示例来源:origin: org.eclipse.jdt/org.eclipse.jdt.ui

@Override
public void addPages() {
  fContributedJavadocWizardPages= ContributedJavadocWizardPage.getContributedPages(fStore);
  fTreeWizardPage= new JavadocTreeWizardPage(TREE_PAGE_DESC, fStore);
  fLastWizardPage= new JavadocSpecificsWizardPage(SPECIFICS_PAGE_DESC, fTreeWizardPage, fStore);
  fStandardDocletWizardPage= new JavadocStandardWizardPage(STANDARD_PAGE_DESC, fTreeWizardPage, fStore);
  super.addPage(fTreeWizardPage);
  super.addPage(fStandardDocletWizardPage);
  for (int i= 0; i < fContributedJavadocWizardPages.length; i++) {
    super.addPage(fContributedJavadocWizardPages[i]);
  }
  super.addPage(fLastWizardPage);
  fTreeWizardPage.init();
  fStandardDocletWizardPage.init();
  fLastWizardPage.init();
}

代码示例来源:origin: org.eclipse.pde/org.eclipse.pde.api.tools.ui

@Override
public IWizardPage getNextPage() {
  IWizardPage next = null;
  if (locationIsTarget.getSelection()) {
    if (targetPage == null) {
      targetPage = new TargetBasedApiBaselineWizardPage(null);
      ((Wizard) getWizard()).addPage(targetPage);
    }
    next = targetPage;
  } else if (locationIsDirectory.getSelection()) {
    if (directoryPage == null) {
      directoryPage = new DirectoryBasedApiBaselineWizardPage(null);
      ((Wizard) getWizard()).addPage(directoryPage);
    }
    next = directoryPage;
  }
  return next;
}

代码示例来源:origin: org.eclipse.pde/org.eclipse.pde.ui

if (page != null) {
  importIdToWizardPage.put(importerId, page);
  ((Wizard) getWizard()).addPage(page);

代码示例来源:origin: pentaho/big-data-plugin

wizard.addPage( page1 );
wizard.addPage( page2 );

相关文章