FAQ Close All Editors On Shutdown

From Eclipsepedia

Jump to: navigation, search

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();
 
 
//See  FAQ How do I open an editor programmatically?
IEditorPart editorPart = IDE.openEditorOnFileStore( activePage, fileStore );
 
 
workbench.addWorkbenchListener( new IWorkbenchListener()
{
    public boolean preShutdown( IWorkbench workbench, boolean forced )
    {                            
        activePage.closeEditors( activePage.getEditorReferences(), 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.

Copyright © 2008 The Eclipse Foundation. All Rights Reserved

  • This page was last modified 03:11, 11 March 2008 by Allan Ramirez.
Personal tools