JFace 向导根类
JFace wizard root category
如何创建与"New interface"、"new class"、"New java project"等
同级显示的向导
我正在使用类别 ID org.eclipse.pde.PDE,但它似乎不起作用,而且我的向导一直出现在 "Others" 文件夹中。
这是使用 org.eclipse.ui.perspectiveExtensions
为特定视角定义 'new wizard shortcut' 完成的。
例如:
<extension
point="org.eclipse.ui.perspectiveExtensions">
<perspectiveExtension
targetID="org.eclipse.jdt.ui.JavaPerspective">
<newWizardShortcut
id="org.eclipse.jdt.junit.wizards.NewTestCaseCreationWizard">
</newWizardShortcut>
</perspectiveExtension>
是为JUnit定义新测试用例的快捷方式。
可以在 'Shortcuts' 选项卡的 'Window > Perspective > Customize Perspective' 对话框中打开或关闭像这样定义的快捷方式。
中有更多详细信息
注意:如果已使用透视图,您可能需要重置透视图或使用“自定义透视图”对话框来显示新的快捷方式。
如何创建与"New interface"、"new class"、"New java project"等
同级显示的向导我正在使用类别 ID org.eclipse.pde.PDE,但它似乎不起作用,而且我的向导一直出现在 "Others" 文件夹中。
这是使用 org.eclipse.ui.perspectiveExtensions
为特定视角定义 'new wizard shortcut' 完成的。
例如:
<extension
point="org.eclipse.ui.perspectiveExtensions">
<perspectiveExtension
targetID="org.eclipse.jdt.ui.JavaPerspective">
<newWizardShortcut
id="org.eclipse.jdt.junit.wizards.NewTestCaseCreationWizard">
</newWizardShortcut>
</perspectiveExtension>
是为JUnit定义新测试用例的快捷方式。
可以在 'Shortcuts' 选项卡的 'Window > Perspective > Customize Perspective' 对话框中打开或关闭像这样定义的快捷方式。
中有更多详细信息注意:如果已使用透视图,您可能需要重置透视图或使用“自定义透视图”对话框来显示新的快捷方式。