금요일, 7월 27, 2007

Eclipse RCP TIP

Eclipse RCP에서 모든 Edit window 닫기 sample 코드

IWorkbenchPage[] pages = window.getPages();
for(int i = 0; i < pages.length; i++) {
IEditorReference[] editors = pages[i].getEditorReferences();

for(int j = 0; j < editors.length; j++) {
pages[i].closeEditor(editors[j].getEditor(true), false);
}
}

댓글 없음:

댓글 쓰기