Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2005-03-18 17:15:00 +0000
committerDarin Wright2005-03-18 17:15:00 +0000
commit82c783cb55d257e44c98a7620093276fa899b27a (patch)
tree19b7b0dfd36bbd20dd24492183dcbf8bcfea1954 /org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchConfigurationType.java
parent3f809c662d814bdfcf839978a62052805018f80f (diff)
downloadeclipse.platform.debug-82c783cb55d257e44c98a7620093276fa899b27a.tar.gz
eclipse.platform.debug-82c783cb55d257e44c98a7620093276fa899b27a.tar.xz
eclipse.platform.debug-82c783cb55d257e44c98a7620093276fa899b27a.zip
API review/cleanup
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.java9
1 files changed, 8 insertions, 1 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 f8ef276de..2dff04d70 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
@@ -32,6 +32,8 @@ import org.eclipse.debug.core.sourcelookup.ISourcePathComputer;
* delegate="com.example.ExampleLaunchConfigurationDelegate"
* modes="run, debug"
* name="Example Application">
+ * sourceLocatorId="com.example.SourceLocator">
+ * sourcePathComputerId="com.example.SourcePathComputer">
* </launchConfigurationType>
* </extension>
* </pre>
@@ -50,9 +52,14 @@ import org.eclipse.debug.core.sourcelookup.ISourcePathComputer;
* <li><code>category</code> is an optional attribute that specifies a category
* for this launch configuration type. Categories are client defined. This
* attribute was added in the 2.1 release.</li>
+ * <li><code>sourceLocatorId</code> an optional unique identifier of a sourceLocator extension that
+ * is used to create the source locator for sessions launched using launch configurations
+ * of this type. This atttribute was added in the 3.0 release.</li>
+ * <li><code>sourcePathComputerId</code> an optional unique identifier of a sourcePathComputer extension
+ * that is used to compute a default source lookup path for launch configurations of this type.
+ * This atttribute was added in the 3.0 release.</li>
* </ul>
* </p>
- * TODO: add new attributes - sourcePathComputerId and sourceLocatorId
* <p>
* The <code>category</code> attribute has been added in release 2.1, such that other
* tools may re-use the launch configuration framework for purposes other than

Back to the top