Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
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