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

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

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

Wizard.performCancel介绍

[英]The Wizard implementation of this IWizard method does nothing and returns true. Subclasses should reimplement this method if they need to perform any special cancel processing for their wizard.
[中]此IWizard方法的Wizard实现不执行任何操作并返回true。如果子类需要为其向导执行任何特殊的取消处理,则应重新实现此方法。

代码示例

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

@Override
public boolean performCancel() {
  return super.performCancel();
}

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

public boolean performCancel() {
  if(importWizard != null) {
    return importWizard.performCancel();
  }
  return super.performCancel();
}

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

@Override
public boolean performCancel() {
  if(importWizard != null) {
    return importWizard.performCancel();
  }
  return super.performCancel();
}

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

public boolean performCancel() {
  if (wizard != null) {
    return wizard.performCancel();
  }
  return super.performCancel();
}

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

public boolean performCancel() {
  if (fChange != null)
    fChange.dispose();
  return super.performCancel();
}

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

/**
   * @see org.eclipse.jface.wizard.Wizard#performCancel()
   */
  @Override
  public boolean performCancel() {
    ApiBaselineWizardPage page = getApiBaselineWizardPage();
    if (page != null) {
      page.cancel();
    }
    return super.performCancel();
  }
}

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

/**
   * @see org.eclipse.jface.wizard.Wizard#performCancel()
   */
  public boolean performCancel() {
    ApiBaselineWizardPage page = (ApiBaselineWizardPage) getContainer().getCurrentPage();
    page.cancel();
    return super.performCancel();
  }
}

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

public boolean performCancel() {
  
  IJavaProject[] checkedProjects= fJTWPage.getCheckedProjects();
  updateStore(checkedProjects);
  
  //If the wizard was not launched from an ant file store the settings 
  if (fXmlJavadocFile == null) {
    fStore.updateDialogSettings(getDialogSettings(), checkedProjects);
  }
  return super.performCancel();
}

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

@Override
public boolean performCancel() {
  updateStore();
  //If the wizard was not launched from an ant file store the settings
  if (fXmlJavadocFile == null) {
    IJavaProject[] checkedProjects= fTreeWizardPage.getCheckedProjects();
    fStore.updateDialogSettings(getDialogSettings(), checkedProjects);
  }
  return super.performCancel();
}

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

@Override
public boolean performCancel() {
  updateStore();
  //If the wizard was not launched from an ant file store the settings
  if (fXmlJavadocFile == null) {
    IJavaProject[] checkedProjects= fTreeWizardPage.getCheckedProjects();
    fStore.updateDialogSettings(getDialogSettings(), checkedProjects);
  }
  return super.performCancel();
}

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

public boolean performCancel() {
  IJavaProject[] checkedProjects = fJTWPage.getCheckedProjects();
  updateStore(checkedProjects);
  //If the wizard was not launched from an ant file store the setttings
  if (fXmlJavadocFile == null) {
    fStore.updateDialogSettings(getDialogSettings(), checkedProjects);
  }
  return super.performCancel();
}

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

return super.performCancel();

相关文章