| [news.eclipse.platform] Re: List Open Files |
Is there an Eclipse platform API to list the currently open files in the editor?
Ideally I'd like to be able to get all the open files of a particular type (e.g. all open XML files) but I can only see a way to get the currently active editor and which editor is associated with which file.
Here is one way that works with no context: PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().getEditorReferences()
Hope this helps, Eric