Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationListener.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationListener.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationListener.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationListener.java
index dc7b84fa4..e1a59f933 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationListener.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationListener.java
@@ -10,7 +10,7 @@
*******************************************************************************/
package org.eclipse.debug.core;
-
+
/**
* Notified when a launch configuration is created,
* deleted, or changed.
@@ -20,34 +20,34 @@ package org.eclipse.debug.core;
* @since 2.0
*/
public interface ILaunchConfigurationListener {
-
+
/**
* The given launch configuration has been created.
- *
+ *
* @param configuration the newly created launch configuration
*/
public void launchConfigurationAdded(ILaunchConfiguration configuration);
-
+
/**
* The given launch configuration has changed in some way.
* The configuration may be a working copy.
- *
+ *
* @param configuration the launch configuration that has
* changed
*/
public void launchConfigurationChanged(ILaunchConfiguration configuration);
-
+
/**
* The given launch configuration has been deleted.
* <p>
- * The launch configuration no longer exists. Data stored
+ * The launch configuration no longer exists. Data stored
* in the configuration can no longer be accessed, however
* handle-only attributes of the launch configuration
* can be retrieved.
* </p>
- *
+ *
* @param configuration the deleted launch configuration
*/
- public void launchConfigurationRemoved(ILaunchConfiguration configuration);
+ public void launchConfigurationRemoved(ILaunchConfiguration configuration);
}

Back to the top