Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

FAQ Close All Editors On Shutdown

Revision as of 04:19, 19 October 2008 by Remy.suen.gmail.com (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The snippet below will close all Editors in the workbench when you close the eclipse application.

IWorkbench workbench = PlatformUI.getWorkbench();
final IWorkbenchPage activePage = workbench.getActiveWorkbenchWindow().getActivePage();
 
workbench.addWorkbenchListener( new IWorkbenchListener()
{
    public boolean preShutdown( IWorkbench workbench, boolean forced )
    {                            
        activePage.closeEditors( activePage.getEditorReferences(), true);
        return true;
    }
 
    public void postShutdown( IWorkbench workbench )
    {
 
    }
});


The example below shows how to close an editor that is programmatically opened.

IWorkbench workbench = PlatformUI.getWorkbench();
final IWorkbenchPage activePage = workbench.getActiveWorkbenchWindow().getActivePage();
 
final IEditorPart editorPart = IDE.openEditorOnFileStore( activePage, fileStore );
 
workbench.addWorkbenchListener( new IWorkbenchListener() {
    public boolean preShutdown( IWorkbench workbench, boolean forced )     {                            
        activePage.closeEditor(editorPart, true);
        return true;
    }
 
    public void postShutdown( IWorkbench workbench )
    {
 
    }
});

See Also:



This FAQ was originally published in Official Eclipse 3.0 FAQs. Copyright 2004, Pearson Education, Inc. All rights reserved. This text is made available here under the terms of the Eclipse Public License v1.0.

Back to the top