Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2004-04-15 18:24:31 +0000
committerDarin Wright2004-04-15 18:24:31 +0000
commit48c92d5c42e6af5046b770531047aa8036995443 (patch)
treef69d9b205858d18fce6409d1eec37a0bad9acc70 /org.eclipse.debug.core/core/org/eclipse/debug/core/sourcelookup/ISourcePathComputer.java
parentb38f8e34f1839e7962394a4a855fb7b636d2da24 (diff)
downloadeclipse.platform.debug-48c92d5c42e6af5046b770531047aa8036995443.tar.gz
eclipse.platform.debug-48c92d5c42e6af5046b770531047aa8036995443.tar.xz
eclipse.platform.debug-48c92d5c42e6af5046b770531047aa8036995443.zip
API review
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/sourcelookup/ISourcePathComputer.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/sourcelookup/ISourcePathComputer.java17
1 files changed, 11 insertions, 6 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/sourcelookup/ISourcePathComputer.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/sourcelookup/ISourcePathComputer.java
index 5f484d8a7..1bb666cce 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/sourcelookup/ISourcePathComputer.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/sourcelookup/ISourcePathComputer.java
@@ -18,12 +18,17 @@ import org.eclipse.debug.core.DebugPlugin;
* <p>
* A source path computer is contributed in plug-in XML via the
* <code>sourcePathComputers</code> extension point, that provides a delegate
- * to compute the path specific to a launch configuration.
- * </p>
- *
- * TODO: Didn't we also want to be able to override the registered computer
- * with a configuration attribute?
- *
+ * to compute the path specific to a launch configuration. Following
+ * is an example contribution.
+ * <pre>
+ * &lt;extension point=&quot;org.eclipse.debug.core.sourcePathComputers&quot;&gt;
+ * &lt;sourcePathComputer
+ * id=&quot;org.eclipse.example.exampleSourcePathComputer&quot;
+ * class=&quot;org.eclipse.example.SourcePathComputer&quot;&gt;
+ * &lt;/sourcePathComputer&gt;
+ * &lt;/extension&gt;
+ * </pre>
+ * </p>
* @since 3.0
*/
public interface ISourcePathComputer extends ISourcePathComputerDelegate {

Back to the top