Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2004-03-15 21:01:10 +0000
committerDarin Wright2004-03-15 21:01:10 +0000
commit008ef72a2cbad01333797b18f24c4eebb9ff7355 (patch)
treee3c3163037400349e6ae707d67d9f2eb31a7bc55 /org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationType.java
parentc43d05a8efa8ca7f55524e78a9fee948c1e4a3b6 (diff)
downloadeclipse.platform.debug-008ef72a2cbad01333797b18f24c4eebb9ff7355.tar.gz
eclipse.platform.debug-008ef72a2cbad01333797b18f24c4eebb9ff7355.tar.xz
eclipse.platform.debug-008ef72a2cbad01333797b18f24c4eebb9ff7355.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.java12
1 files changed, 12 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 bab425a2e..09c6c0dde 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
@@ -185,5 +185,17 @@ public interface ILaunchConfigurationType extends IAdaptable {
* @since 3.0
*/
public ISourcePathComputer getSourcePathComputer();
+
+ /**
+ * Returns the identifier of the persistable source locator to be used with
+ * launch configurations of this type by default, or <code>null</code> if
+ * unspecified. Launch configuration types optionally specify this attribue
+ * in their plug-in XML via the <code>sourceLocatorId</code> attribute.
+ *
+ * @return the identifier of the persistable source locator to be used with
+ * launch configurations of this type by default, or <code>null</code>
+ * @since 3.0
+ */
+ public String getSourceLocatorId();
}

Back to the top