Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchMode.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchMode.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchMode.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchMode.java
index 9f9849d9a..2f3c1debf 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchMode.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchMode.java
@@ -32,21 +32,21 @@ package org.eclipse.debug.core;
* @noextend This interface is not intended to be extended by clients.
*/
public interface ILaunchMode {
-
+
/**
* Returns the unique identifier for this launch mode.
- *
+ *
* @return the unique identifier for this launch mode
*/
public String getIdentifier();
-
+
/**
* Returns a human readable label for this launch mode.
- *
+ *
* @return a human readable label for this launch mode
*/
public String getLabel();
-
+
/**
* Returns a human readable label for this launch mode when used in a
* cascade menu. For example, "Run As". Allows the label to be

Back to the top