Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSarika Sinha2014-10-08 09:10:12 +0000
committerDani Megert2014-10-08 09:12:11 +0000
commit7a25e04d06eb13797a5e1ac0a61c9d48b30af179 (patch)
tree565bd5368efc9e99ab8096fb19551b68595c12b3 /org.eclipse.debug.ui/plugin.xml
parent67ab45167dc73f66adf47470532a7c71a3d3339f (diff)
downloadeclipse.platform.debug-7a25e04d06eb13797a5e1ac0a61c9d48b30af179.tar.gz
eclipse.platform.debug-7a25e04d06eb13797a5e1ac0a61c9d48b30af179.tar.xz
eclipse.platform.debug-7a25e04d06eb13797a5e1ac0a61c9d48b30af179.zip
Fixed bug 220657: [console][run control] Add Teminate All action in console view's context menuI20141008-1300
Signed-off-by: Sarika Sinha <sarika.sinha@in.ibm.com>
Diffstat (limited to 'org.eclipse.debug.ui/plugin.xml')
-rw-r--r--org.eclipse.debug.ui/plugin.xml11
1 files changed, 10 insertions, 1 deletions
diff --git a/org.eclipse.debug.ui/plugin.xml b/org.eclipse.debug.ui/plugin.xml
index e54c7e01c..fc6fa6d44 100644
--- a/org.eclipse.debug.ui/plugin.xml
+++ b/org.eclipse.debug.ui/plugin.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<!--
- Copyright (c) 2005, 2013 IBM Corporation and others.
+ Copyright (c) 2005, 2014 IBM Corporation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
@@ -1330,6 +1330,15 @@
id="org.eclipse.debug.ui.processConsoleContextMenu"
targetID="org.eclipse.debug.ui.ProcessConsoleType.#ContextMenu">
<action
+ class="org.eclipse.debug.internal.ui.commands.actions.TerminateAllActionDelegate"
+ helpContextId="terminate_all_action_context"
+ icon="$nl$/icons/full/elcl16/terminate_all_co.png"
+ id="org.eclipse.debug.ui.consoleTerminateAllAction"
+ label="%TerminateAllAction.label"
+ menubarPath="additions"
+ tooltip="%TerminateAllAction.tooltip">
+ </action>
+ <action
class="org.eclipse.debug.internal.ui.actions.RemoveAllTerminatedAction"
helpContextId="console_remove_all_terminated_context"
icon="$nl$/icons/full/elcl16/rem_all_co.png"

Back to the top