Hide Coolbar/Toolbar items/Preference pages in Eclipse RCP application (Eclipse e4)(在 Eclipse RCP 应用程序 (Eclipse e4) 中隐藏 Coolbar/Toolbar 项/Preference 页面)
问题描述
在我们的 Eclipse RCP 应用程序(使用 Eclipse 3.7)中,我重写了 WorkbenchWindowAdvisor.postWindowCreate()
方法,以隐藏不需要的 Coolbar/Toolbar 项目,例如 File、运行等菜单和运行最后一个工具、搜索等工具栏按钮,它工作正常.现在我已将代码移至 Eclipse e4 4.1.2,当我运行我的 RCP 应用程序时,它会启动,但会显示这些不需要的 Coolbar/Toolbar 项目.
In our Eclipse RCP application (using Eclipse 3.7) I had overridden WorkbenchWindowAdvisor.postWindowCreate()
method, to hide the unwanted Coolbar/Toolbar items like File, Run etc. menus and Run Last Tool, Search etc. toolbar buttons and it was working fine. Now I have moved my code to Eclipse e4 4.1.2 and when I run my RCP application now it gets launched but it is showing these unwanted Coolbar/Toolbar items.
在深入研究该问题时,我发现 WorkbenchWindowAdvisor.postWindowCreate()
方法未在 e4
中使用,并且根本没有被调用.那么在 Eclipse e4 中执行此操作的替代方法是什么?
On some digging into the issue I found out that WorkbenchWindowAdvisor.postWindowCreate()
method is not used in e4
and it does not get called at all. So what is the alternative way of doing this in Eclipse e4?
我还想提一下,在我的 RCP 应用程序中,我有 Xtext
插件.
I also want to mention that in my RCP application I am having Xtext
plugin.
推荐答案
您可以:a) 使用没有这些项目的自定义 Legacy.e4xmi 文件b) 使用模型处理器以编程方式从模型中删除这些项目
You can: a) use a custom Legacy.e4xmi file which has none of those items b) use a model processor to remove those items programmatically from the model
这篇关于在 Eclipse RCP 应用程序 (Eclipse e4) 中隐藏 Coolbar/Toolbar 项/Preference 页面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Eclipse RCP 应用程序 (Eclipse e4) 中隐藏 Coolbar/Toolbar 项/Preference 页面
基础教程推荐
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 降序排序:Java Map 2022-01-01