JFace向导根类别

时间:2016-03-17 21:55:47

标签: eclipse eclipse-rcp jface eclipse-rap

如何创建将在同一级别上显示的向导以及“新界面”,“新类”,“新Java项目”等。

我使用的是类别ID org.eclipse.pde.PDE ,但似乎它不起作用,我的向导一直显示在“其他”文件夹中。

1 个答案:

答案 0 :(得分:3)

使用org.eclipse.ui.perspectiveExtensions来定义一个新的向导快捷方式'从特定的角度来看。

例如:

<extension
     point="org.eclipse.ui.perspectiveExtensions">
  <perspectiveExtension
        targetID="org.eclipse.jdt.ui.JavaPerspective">
     <newWizardShortcut
           id="org.eclipse.jdt.junit.wizards.NewTestCaseCreationWizard">
     </newWizardShortcut>
  </perspectiveExtension>

是JUnit新测试用例快捷方式的定义。

可以在&#39; Window&gt;上打开或关闭这样定义的快捷方式。透视&gt;自定义透视&#39; &#39;快捷方式中的对话框&#39;标签

Eclipse help

中的更多详细信息

注意:您可能必须重置透视图或使用“自定义透视图”对话框来获取新的快捷方式,以便在透视图已被使用时显示。