Package org.eclipse.ui.internal.presentations

Examples of org.eclipse.ui.internal.presentations.SystemMenuNewEditor


    public StandardEditorSystemMenu(IStackPresentationSite site) {
        super(site);
       
        closeOthers = new SystemMenuCloseOthers(site);
        closeAll = new SystemMenuCloseAll(site);
    openAgain = new SystemMenuNewEditor(site);
        menuManager.add(closeOthers);
        menuManager.add(closeAll);
    menuManager.add(new Separator());
    menuManager.add(openAgain);
    }
View Full Code Here

TOP

Related Classes of org.eclipse.ui.internal.presentations.SystemMenuNewEditor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.