Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/sourcelookup/ISourcePathComputerDelegate.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/sourcelookup/ISourcePathComputerDelegate.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/sourcelookup/ISourcePathComputerDelegate.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/sourcelookup/ISourcePathComputerDelegate.java
index 9d5506190..51b17f6b6 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/sourcelookup/ISourcePathComputerDelegate.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/sourcelookup/ISourcePathComputerDelegate.java
@@ -4,7 +4,7 @@
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
- *
+ *
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
@@ -19,7 +19,7 @@ import org.eclipse.debug.core.ILaunchConfiguration;
* (set of source containers that should be considered) for a launch
* configuration.
* <p>
- * A source path computer is contributed in plug-in XML via the
+ * A source path computer is contributed in plug-in XML via the
* <code>sourcePathComputers</code> extension point, providing a delegate
* to compute the default source lookup path specific to a launch
* configuration.
@@ -31,12 +31,12 @@ import org.eclipse.debug.core.ILaunchConfiguration;
* @since 3.0
*/
public interface ISourcePathComputerDelegate {
-
+
/**
* Returns a default collection source containers to be considered for the
* given launch configuration. The collection returned represents the default
* source lookup path for the given configuration.
- *
+ *
* @param configuration the launch configuration for which a default source lookup path
* is to be computed
* @param monitor a progress monitor to be used in case of long operations
@@ -45,5 +45,5 @@ public interface ISourcePathComputerDelegate {
* @exception CoreException if unable to compute a default source lookup path
*/
public ISourceContainer[] computeSourceContainers(ILaunchConfiguration configuration, IProgressMonitor monitor) throws CoreException;
-
+
}

Back to the top