Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2002-03-13 14:38:07 +0000
committerDarin Wright2002-03-13 14:38:07 +0000
commiteba0509e6e86222b2e2255d08fe6fd44cad327a3 (patch)
tree040c8dc84e2b9685e945bc1efe57c638d1163eb5 /org.eclipse.debug.core/doc
parentf498559c053c2f4ae7f9a1158ca2d354458b3b0d (diff)
downloadeclipse.platform.debug-eba0509e6e86222b2e2255d08fe6fd44cad327a3.tar.gz
eclipse.platform.debug-eba0509e6e86222b2e2255d08fe6fd44cad327a3.tar.xz
eclipse.platform.debug-eba0509e6e86222b2e2255d08fe6fd44cad327a3.zip
persistable source locators
Diffstat (limited to 'org.eclipse.debug.core/doc')
-rw-r--r--org.eclipse.debug.core/doc/org_eclipse_debug_core.html1
-rw-r--r--org.eclipse.debug.core/doc/org_eclipse_debug_core_source_locators.html60
-rw-r--r--org.eclipse.debug.core/doc/org_eclipse_debug_core_status_handlers.html2
3 files changed, 62 insertions, 1 deletions
diff --git a/org.eclipse.debug.core/doc/org_eclipse_debug_core.html b/org.eclipse.debug.core/doc/org_eclipse_debug_core.html
index d0cb5eef4..75b44f3ff 100644
--- a/org.eclipse.debug.core/doc/org_eclipse_debug_core.html
+++ b/org.eclipse.debug.core/doc/org_eclipse_debug_core.html
@@ -29,6 +29,7 @@ breakpoint management, expression management, and program launching.<br>
<ul>
<li><a href="org_eclipse_debug_core_breakpoints.html">org.eclipse.debug.core.breakpoints</a></li>
<li><a href="org_eclipse_debug_core_launch_configuration_types.html">org.eclipse.debug.core.launchConfigurationTypes</a></li>
+ <li><a href="org_eclipse_debug_core_source_locators.html">org.eclipse.debug.core.sourceLocators</a></li>
<li><a href="org_eclipse_debug_core_status_handlers.html">org.eclipse.debug.core.statusHandlers</a></li>
</ul>
diff --git a/org.eclipse.debug.core/doc/org_eclipse_debug_core_source_locators.html b/org.eclipse.debug.core/doc/org_eclipse_debug_core_source_locators.html
new file mode 100644
index 000000000..4a0e9cb01
--- /dev/null
+++ b/org.eclipse.debug.core/doc/org_eclipse_debug_core_source_locators.html
@@ -0,0 +1,60 @@
+<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
+<html>
+
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+<title>README Source Locators Extension Point</title>
+</head>
+
+<body link="#0000FF" vlink="#800080">
+
+<h1 align="center">Source Locators</h1>
+
+<p><b><i>Identifier: </i></b>org.eclipse.debug.core.sourceLocators</p>
+
+<p><b><i>Description: </i></b>This extension point provides a
+ mechanism specifying a source locator to be used with a launch
+ configuration.</p>
+
+<p><b><i>Configuration Markup:</i></b> </p>
+
+<pre>
+<tt>&nbsp;&nbsp; &lt;!ELEMENT sourceLocator</tt>&gt;
+<tt>&nbsp;&nbsp; &lt;!ATTLIST sourceLocator</tt>
+<br><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; id&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CDATA #REQUIRED</tt>
+<br><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; class&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CDATA #REQUIRED</tt>
+<br><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CDATA #REQUIRED</tt>&gt;
+</pre>
+
+<ul>
+ <li><code>id</code> specifies a unique identifier for this source locator.</li>
+ <li><code>class</code> specifies the fully qualified name of the Java class
+ that implements <code>IPersistableSourceLocator</code>.</li>
+ <li><code>name</code> a human readable name, describing the type of
+ this source locator.</li>
+</ul>
+
+<p><b><i>Examples:</i></b> </p>
+
+<p>The following is an example of a source locator extension point: </p>
+
+<pre>
+ &lt;extension point="org.eclipse.debug.core.sourceLocators"&gt;
+ &lt;sourceLocator
+ id="com.example.ExampleIdentifier"
+ class="com.example.ExampleSourceLocator"
+ name="Example Source Locator"
+ &lt;/sourceLocator&gt;
+ &lt;/extension&gt;
+</pre>
+
+
+<p><b><i>API Information: </i></b>Value of the attribute <b>class</b> must be a fully
+qualified name of a Java class that implements the interface <b>
+org.eclipse.debug.core.model.IPersistableSourceLocator</b>.
+</p>
+
+<p><a href="hglegal.htm"><img src="ngibmcpy.gif" alt="Copyright IBM Corp. 2000, 2001. All Rights Reserved."
+border="0" width="195" height="12"></a></p>
+</body>
+</html>
diff --git a/org.eclipse.debug.core/doc/org_eclipse_debug_core_status_handlers.html b/org.eclipse.debug.core/doc/org_eclipse_debug_core_status_handlers.html
index 203a84fec..0aaffba6b 100644
--- a/org.eclipse.debug.core/doc/org_eclipse_debug_core_status_handlers.html
+++ b/org.eclipse.debug.core/doc/org_eclipse_debug_core_status_handlers.html
@@ -42,7 +42,7 @@
<p><b><i>Examples:</i></b> </p>
-<p>The following is an example of a launch configuration type extension point: </p>
+<p>The following is an example of a status handler extension point: </p>
<pre>
&lt;extension point="org.eclipse.debug.core.statusHandlers"&gt;

Back to the top