| [news.eclipse.platform] Re: List Open Files |
Here is one way that works with no context:
PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().getEditorReferences()
It could be shorter if you have enough context to get the IWorkbenchWindow or IWorkbenchPage directly.
Hope this helps, Eric
This works perfectly, thank you!