Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Duft2016-05-11 13:52:28 +0000
committerMarkus Duft2016-11-30 09:42:25 +0000
commit97be8772a897b47a48b2d4b6ef33b46811408b7f (patch)
treeef2793a75f11741be425b7d236695df5f0f252d2 /org.eclipse.debug.core/plugin.xml
parent66da2950cc347953d38ae225f82b5f23f5e960e7 (diff)
downloadeclipse.platform.debug-97be8772a897b47a48b2d4b6ef33b46811408b7f.tar.gz
eclipse.platform.debug-97be8772a897b47a48b2d4b6ef33b46811408b7f.tar.xz
eclipse.platform.debug-97be8772a897b47a48b2d4b6ef33b46811408b7f.zip
Initial contribution of Launch Groups
The initial contribution is a slightly modified/polished version of the launch group code in org.eclipse.cdt.launch. A follow up commit will contain additional modifications to merge features from another (external) implementation of launch groups. Bug: 492788 Change-Id: Ie0a902b857a5c2cc02f5c36d8591001493bd6e19 Signed-off-by: Markus Duft <markus.duft@ssi-schaefer.com>
Diffstat (limited to 'org.eclipse.debug.core/plugin.xml')
-rw-r--r--org.eclipse.debug.core/plugin.xml19
1 files changed, 19 insertions, 0 deletions
diff --git a/org.eclipse.debug.core/plugin.xml b/org.eclipse.debug.core/plugin.xml
index 009a27b60..bd793e3f8 100644
--- a/org.eclipse.debug.core/plugin.xml
+++ b/org.eclipse.debug.core/plugin.xml
@@ -258,4 +258,23 @@
id="org.eclipse.debug.core.propertyTesters.launchable">
</propertyTester>
</extension>
+ <extension
+ point="org.eclipse.debug.core.launchDelegates">
+ <launchDelegate
+ delegate="org.eclipse.debug.internal.core.groups.GroupLaunchConfigurationDelegate"
+ delegateDescription="%GroupLaunch.description"
+ id="org.eclipse.debug.core.groups.GroupLaunchConfigurationDelegate"
+ modes="run,debug,profile"
+ name="%GroupLaunch.name"
+ type="org.eclipse.debug.core.groups.GroupLaunchConfigurationType">
+ </launchDelegate>
+ </extension>
+ <extension
+ point="org.eclipse.debug.core.launchConfigurationTypes">
+ <launchConfigurationType
+ id="org.eclipse.debug.core.groups.GroupLaunchConfigurationType"
+ name="%GroupLaunch.name"
+ public="true">
+ </launchConfigurationType>
+ </extension>
</plugin>

Back to the top