Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2004-01-21 20:07:31 +0000
committerDarin Wright2004-01-21 20:07:31 +0000
commit95cdbf05b1892fa256a1b2e07f08953e53125af5 (patch)
tree29e2058a438b25448b5adcb047f5b7f275652bad /org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationType.java
parent1c40d86295f04b2e2fbf1be0dfdfcaad6446e0b1 (diff)
downloadeclipse.platform.debug-95cdbf05b1892fa256a1b2e07f08953e53125af5.tar.gz
eclipse.platform.debug-95cdbf05b1892fa256a1b2e07f08953e53125af5.tar.xz
eclipse.platform.debug-95cdbf05b1892fa256a1b2e07f08953e53125af5.zip
Bug 29890 - Debug Platform Source Lookup Facilites
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationType.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationType.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationType.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationType.java
index cab83f98a..bab425a2e 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationType.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationType.java
@@ -15,6 +15,7 @@ import org.eclipse.core.resources.IContainer;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.debug.core.model.ILaunchConfigurationDelegate;
+import org.eclipse.debug.internal.core.sourcelookup.ISourcePathComputer;
/**
* Describes and creates instances of a specific type of
@@ -172,5 +173,17 @@ public interface ILaunchConfigurationType extends IAdaptable {
* @since 2.1
*/
public String getAttribute(String attributeName);
+
+ /**
+ * Returns the registered source path computer that is associated with
+ * this launch configuration type or <code>null</code> if unspecified or
+ * an invalid id was specified.
+ * <p>
+ * This method is yet experimental.
+ * </p>
+ * @return the registered source path computer, possibly <code>null</code>
+ * @since 3.0
+ */
+ public ISourcePathComputer getSourcePathComputer();
}

Back to the top