Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2004-01-29 16:25:41 +0000
committerDarin Wright2004-01-29 16:25:41 +0000
commit3e36fbad34bcb1a3c447c02ac9e55c35c6475382 (patch)
tree1fc50d4bd72a3bc63634feed40a558890ebfe201 /org.eclipse.debug.ui/plugin.xml
parent7583542297dbe8c7860690c5927addd407caa13e (diff)
downloadeclipse.platform.debug-3e36fbad34bcb1a3c447c02ac9e55c35c6475382.tar.gz
eclipse.platform.debug-3e36fbad34bcb1a3c447c02ac9e55c35c6475382.tar.xz
eclipse.platform.debug-3e36fbad34bcb1a3c447c02ac9e55c35c6475382.zip
Bug 18338 - Run/Debug in the context menu
Diffstat (limited to 'org.eclipse.debug.ui/plugin.xml')
-rw-r--r--org.eclipse.debug.ui/plugin.xml21
1 files changed, 20 insertions, 1 deletions
diff --git a/org.eclipse.debug.ui/plugin.xml b/org.eclipse.debug.ui/plugin.xml
index 10d44870c..e1575383d 100644
--- a/org.eclipse.debug.ui/plugin.xml
+++ b/org.eclipse.debug.ui/plugin.xml
@@ -1507,5 +1507,24 @@
id="org.eclipse.debug.ui.containerPresentation.default">
</sourceContainerPresentation>
</extension>
-
+<!-- ========================================= -->
+<!-- Contextual Launch Menu (Work in Progress) -->
+<!-- ========================================= -->
+ <extension
+ point="org.eclipse.ui.popupMenus">
+ <objectContribution
+ objectClass="org.eclipse.core.resources.IResource"
+ adaptable="true"
+ id="org.eclipse.debug.ui.contextualLaunch">
+ <action
+ label="%LaunchMenu.label"
+ style="pulldown"
+ class="org.eclipse.debug.internal.ui.actions.ContextualLaunchObjectActionDelegate"
+ menubarPath="additions"
+ enablesFor="1"
+ id="org.eclipse.debug.ui.contextualLaunch.submenu">
+ </action>
+ </objectContribution>
+ </extension>
+<!-- End Contextual Run Menu (Work in Progress) -->
</plugin>

Back to the top