Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2003-05-14 20:59:13 +0000
committerDarin Wright2003-05-14 20:59:13 +0000
commitb141fc6fdf71e7599f9b9034f0a41ae8c09be697 (patch)
tree257babc28a6cf766afaeba184af9264071f87033 /org.eclipse.debug.core/core/org/eclipse/debug/core/DebugPlugin.java
parent25b9e045fbdcff430080068d5888e8fe40211e23 (diff)
downloadeclipse.platform.debug-b141fc6fdf71e7599f9b9034f0a41ae8c09be697.tar.gz
eclipse.platform.debug-b141fc6fdf71e7599f9b9034f0a41ae8c09be697.tar.xz
eclipse.platform.debug-b141fc6fdf71e7599f9b9034f0a41ae8c09be697.zip
bug 34514 - Define New Launch Mode other than Run or Debug
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/DebugPlugin.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/DebugPlugin.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/DebugPlugin.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/DebugPlugin.java
index dc51d8a55..6fcdf732a 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/DebugPlugin.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/DebugPlugin.java
@@ -93,6 +93,22 @@ public class DebugPlugin extends Plugin {
* @since 2.0
*/
public static final String EXTENSION_POINT_SOURCE_LOCATORS= "sourceLocators"; //$NON-NLS-1$
+
+ /**
+ * Simple identifier constant (value <code>"launchModes"</code>) for the
+ * source modes extension point.
+ *
+ * @since 3.0
+ */
+ public static final String EXTENSION_POINT_LAUNCH_MODES= "launchModes"; //$NON-NLS-1$
+
+ /**
+ * Simple identifier constant (value <code>"launchDelegates"</code>) for the
+ * launch delegates extension point.
+ *
+ * @since 3.0
+ */
+ public static final String EXTENSION_POINT_LAUNCH_DELEGATES= "launchDelegates"; //$NON-NLS-1$
/**
* Status code indicating an unexpected internal error.

Back to the top