Eclipse RCP 插件继承
我正在创建一个 Eclipse RCP 应用程序,并且有多个共享相同菜单和命令的插件。是否可以让插件扩展一个中央插件,这样我就不必为使用它们的每个插件编写相同的菜单和命令?如果是这样,我该怎么办?
I am creating an Eclipse RCP application and have multiple plugins that share the same menus and commands. Is it possible to have the plugins extend one central plugin so that I don't have to program the same menus and commands for each plugin that uses them? If so, how can I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需让您的“附件”插件依赖中心插件(导出所需的包)即可。
Just let your "annex" plugins depends on the central one (exporting required packages).
添加eclipse的menu-command-handler,actionSet已经过时
Add menu-command-handler of eclipse, actionSet is outdated