在eclipse中获得当前所有打开的editor实例列表

在eclipse中获得当前所有打开的editor实例列表

http://www.cnblogs.com/youngerbaby/archive/2006/10/16/530268.html

EditorPart[] parts =
PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().getEditors();

或者

IEditorReference[] parts = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().getEditorReferences();

你可能感兴趣的:(在eclipse中获得当前所有打开的editor实例列表)