Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationMigrationDelegate.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationMigrationDelegate.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationMigrationDelegate.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationMigrationDelegate.java
index ce4e3d014..328c722fc 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationMigrationDelegate.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationMigrationDelegate.java
@@ -15,10 +15,10 @@ import org.eclipse.core.runtime.CoreException;
/**
* Responsible for migrating launch configurations between different versions of Eclipse.
- * A migration delegate is contributed as an optional attribute of a
+ * A migration delegate is contributed as an optional attribute of a
* <code>launchConfigurationType</code> extension and is responsible for identifying
* migration candidates and migrating launch configurations of that type.
- * <p>
+ * <p>
* For example, since 3.2 launch configurations may have resources mapped to them. A migration
* delegate could assign appropriate resources to a launch configuration create in an earlier
* version.
@@ -31,22 +31,22 @@ import org.eclipse.core.runtime.CoreException;
public interface ILaunchConfigurationMigrationDelegate {
/**
- * Returns whether the given launch configuration requires migration.
- *
- * @param candidate potential migration candidate
+ * Returns whether the given launch configuration requires migration.
+ *
+ * @param candidate potential migration candidate
* @return whether the given launch configuration requires migration
* @throws CoreException if an exception occurs determining the status of the
* given configuration
*/
public boolean isCandidate(ILaunchConfiguration candidate) throws CoreException;
-
+
/**
* Migrates the given launch configuration to be compatible with the current tooling.
- *
+ *
* @param candidate the candidate to be migrated, which can be a launch configuration
* or working copy
* @throws CoreException if an exception occurs during migration
*/
public void migrate(ILaunchConfiguration candidate) throws CoreException;
-
+
}

Back to the top