我开发了一个RCP应用程序。我想在我的eclipse RCP应用程序的File Menu中显示最近的文件。
在Google上我发现我应该使用org.eclipse.ui.workbench.ContributionItemFactory.REOPEN_EDITORS.create(窗口)。但是哪里?我很少迷路。帮助我。
此致 Priyank
答案 0 :(得分:1)
添加菜单贡献:menu:file?after = additions 在那之下加上动态。 编写一个继承自CompoundContributionItem的类。 覆盖getContributionItem方法。在里面使用:org.eclipse.ui.workbench.ContributionItemFactory.REOPEN_EDITORS.create(window)
将返回贡献项目。将它放在一个数组中,并将此类添加到动态下的菜单贡献中。