Eclipse RCP 插件开发 - 无法获取新的 menuContribution 选项
我使用的是 Eclipse 3.2。 对于 RCP 应用程序,我尝试从 org.eclipse.ui.menus 进行扩展。 当我右键单击并选择新选项时,“菜单贡献”没有出现。 我只在“新建”下看到选项“项目”、“菜单”、“组”、“小部件”。 没有名为“菜单贡献”的选项。 我在目标平台中遗漏了什么吗? 如果是的话,哪个罐子?
I am using Eclipse 3.2. For an RCP application, I am trying to extend from org.eclipse.ui.menus. When I right-click and pick new option, "menu Contribution" isn't appearing. I only see options 'item', 'menu', 'group', 'widget' under 'New'. There is no option named "menu Contribution". Am I missing anything in target platform? If so, which jar?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我确认它不能工作。
请考虑来自以下位置的扩展点参考帮助:
3.2.1 中的 org.eclipse.ui.menus
3.4 Ganymede 中的 org.eclipse.ui.menus
这就是为什么您看不到
menuContribution
替代文本 http ://www.vogella.de/articles/RichClientPlatform/images/command70.gif
I confirm it can not work.
Consider the Extension Points Reference help from:
org.eclipse.ui.menus in 3.2.1
<!ELEMENT extension (item* , menu* , group* , widget*)>
org.eclipse.ui.menus in 3.4 Ganymede
<!ELEMENT extension (group* , widget* , menuContribution*)>
That is why you do not see
menuContribution
alt text http://www.vogella.de/articles/RichClientPlatform/images/command70.gif
适合我使用:
Eclipse SDK
版本:3.4.1
版本号:M20080911-1700
我建议升级...3.2 有点旧恕我直言
Works for me using:
Eclipse SDK
Version: 3.4.1
Build id: M20080911-1700
I would suggest upgrading...3.2 is a little old IMHO