有没有办法在 Project Explorer 上添加扩展来创建新的向导项目?
Is there any way to add extension on Project Explorer to create new wizard project?
是否可以在 "Create a project..." 部分添加我的特定项目向导?
我添加了右键单击 "new" 像这样
<extension point="org.eclipse.ui.navigator.navigatorContent">
<commonWizard
type="new"
wizardId="com.XXX.projectWizard">
<enablement></enablement>
</commonWizard>
</extension>
视图将在此列表的开头添加 'Create new xxxx' 行,用于新项目向导,这些向导使用 org.eclipse.ui.perspectiveExtensions
扩展点声明为当前透视图的 newWizardShortcut
。
<extension point="org.eclipse.ui.perspectiveExtensions">
<perspectiveExtension
targetID="org.eclipse.ui.resourcePerspective">
<newWizardShortcut id="org.eclipse.jdt.ui.wizards.NewProjectCreationWizard"/>
新向导必须是项目向导。
这还会将向导添加到项目部分 'New' 菜单的顶层。
是否可以在 "Create a project..." 部分添加我的特定项目向导?
我添加了右键单击 "new" 像这样
<extension point="org.eclipse.ui.navigator.navigatorContent">
<commonWizard
type="new"
wizardId="com.XXX.projectWizard">
<enablement></enablement>
</commonWizard>
</extension>
视图将在此列表的开头添加 'Create new xxxx' 行,用于新项目向导,这些向导使用 org.eclipse.ui.perspectiveExtensions
扩展点声明为当前透视图的 newWizardShortcut
。
<extension point="org.eclipse.ui.perspectiveExtensions">
<perspectiveExtension
targetID="org.eclipse.ui.resourcePerspective">
<newWizardShortcut id="org.eclipse.jdt.ui.wizards.NewProjectCreationWizard"/>
新向导必须是项目向导。
这还会将向导添加到项目部分 'New' 菜单的顶层。