我喜欢在我的RCP应用程序中使用Eclipse提供的导航历史记录.不幸的是,这个功能没有很好的记录事实上我只找到了这个Wiki条目:http://wiki.eclipse.org/FAQ_How_do_I_hook_my_editor_to_the_Back_and_Forward_buttons%3F
它提到可以在导航历史记录中标记每个编辑器,而无需指定位置.这正是我想要的.
Regardless of whether the specific editor has any support for navigation history,markLocation will work. If the editor doesn’t implement INavigationLocationProvider,a history entry will be added,allowing the user to jump back to that editor but without returning to any particular location.
我在应用程序中添加了以下代码行,以便每次打开新的编辑器时添加导航条目.
IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage();
IEditorPart editor = page.openEditor( input,MyEditor.ID );
page.getNavigationHistory().markLocation( editor );
我的问题是代码不起作用.命令org.eclipse.ui.navigate.backwardHistory和org.eclipse.ui.navigate.forwardHistory的工具栏图标保持灰色.
最佳答案
原文链接:https://www.f2er.com/java/438080.html