枚举我所有的 Eclipse 编辑器?
我构建了一个简单的 Eclipse 插件,用户可以使用数据库资源的 TableViewer
在任何这些资源上打开编辑器。
因此,用户可能有零个以上正在运行的编辑器实例。
是否有 API 可用于获取这些编辑器实例的列表?
I have built a simple Eclipse plugin where a user may use a TableViewer
of database resources to open an editor on any of those resources.
Users may therefore have zero upwards instances of the editor running.
Is there an API available to get a list of those editor instances?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以通过以下方式获取对所有打开的编辑器的引用:
然后检查这些以选择引用您的编辑器类型实例的编辑器。
You can get references to all open editors with:
And then check these to select the ones that reference instances of your editor type.
根据 API 的 javadoc,一个工作台可以有多个窗口,一个窗口可以有多个页面,并且它们不共享编辑器。
因此,为了获得所有打开的编辑器,您应该按照以下方式执行某些操作(排除错误检查等):
According to the javadoc for the API a workbench can have several windows, and a window can have several pages, and they do not share editors.
So, in order to get all and every open editor, you should do something along these lines (error checking etc excluded):
请注意,这样的枚举将不尊重 Tab 键顺序
以下是编辑器枚举的示例:
Be aware the such an enumeration will not respect the tab order
Here is an example of an enumeration of editors: