Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发 Eclipse 应用程序。我正在使用通用导航器框架。如何从 Common Navigator Framework 中删除自定义视图的选项?
如果您需要有关我的问题的任何其他信息,请告诉我。
问候, 普里扬克
我找到了解决方案。扩展 CommonNavigator 类并覆盖函数 createCommonActionGroup,如下所述:
@Override protected ActionGroup createCommonActionGroup() { return new ActionGroup() { }; }