在eclipse中,怎么通过代码或者plugin.xml设置所有的透视图都有某个指定的NewWizardShortcut
时间: 2023-11-27 11:49:23 浏览: 67
eclipse-maven3-plugin.zip
可以通过在插件的`plugin.xml`文件中定义`org.eclipse.ui.perspectiveExtensions`扩展点来设置透视图的NewWizardShortcut。
以下是一个示例扩展点定义:
```xml
<extension
point="org.eclipse.ui.perspectiveExtensions">
<perspectiveExtension
targetID="org.eclipse.jdt.ui.JavaPerspective">
<newWizardShortcut
id="com.example.myplugin.myNewWizard">
</newWizardShortcut>
</perspectiveExtension>
</extension>
```
在上面的示例中,`targetID`属性指定了要添加NewWizardShortcut的透视图的ID,而`id`属性指定了要添加的NewWizardShortcut的ID。在这个示例中,我们添加了一个ID为`com.example.myplugin.myNewWizard`的NewWizardShortcut到`org.eclipse.jdt.ui.JavaPerspective`透视图中。
注意,如果你想为多个透视图添加相同的NewWizardShortcut,你需要为每个透视图定义一个`perspectiveExtension`元素。
阅读全文