Package org.eclipse.ui.console.actions

Examples of org.eclipse.ui.console.actions.ClearOutputAction


    action.setImageDescriptor(PlatformUI.getWorkbench().getSharedImages().getImageDescriptor(ISharedImages.IMG_TOOL_PASTE));
    action.setActionDefinitionId(ActionFactory.PASTE.getCommandId());
    PlatformUI.getWorkbench().getHelpSystem().setHelp(action, IConsoleHelpContextIds.CONSOLE_PASTE_ACTION);
    setGlobalAction(actionBars, ActionFactory.PASTE.getId(), action);
   
    fClearOutputAction = new ClearOutputAction(fConsole);
       
        ResourceBundle bundle = ConsoleResourceBundleMessages.getBundle();
        FindReplaceAction fraction = new FindReplaceAction(bundle, "find_replace_action_", fConsoleView); //$NON-NLS-1$
        PlatformUI.getWorkbench().getHelpSystem().setHelp(fraction, IConsoleHelpContextIds.CONSOLE_FIND_REPLACE_ACTION);
    setGlobalAction(actionBars, ActionFactory.FIND.getId(), fraction);
View Full Code Here

TOP

Related Classes of org.eclipse.ui.console.actions.ClearOutputAction

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.