Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2002-02-06 19:03:12 +0000
committerDarin Wright2002-02-06 19:03:12 +0000
commit944d455c256fa8422e79094ddf1cad1b9ca94dce (patch)
tree72911b8e2e1891018bae51dd2cb55efc6c59a53e /org.eclipse.debug.core/doc
parent80602a9dc79683f7e9a43deef3a2954f522d3432 (diff)
downloadeclipse.platform.debug-944d455c256fa8422e79094ddf1cad1b9ca94dce.tar.gz
eclipse.platform.debug-944d455c256fa8422e79094ddf1cad1b9ca94dce.tar.xz
eclipse.platform.debug-944d455c256fa8422e79094ddf1cad1b9ca94dce.zip
bug 6485
Diffstat (limited to 'org.eclipse.debug.core/doc')
-rw-r--r--org.eclipse.debug.core/doc/org_eclipse_debug_core_breakpoints.html63
-rw-r--r--org.eclipse.debug.core/doc/org_eclipse_debug_core_launch_configuration_types.html2
2 files changed, 64 insertions, 1 deletions
diff --git a/org.eclipse.debug.core/doc/org_eclipse_debug_core_breakpoints.html b/org.eclipse.debug.core/doc/org_eclipse_debug_core_breakpoints.html
new file mode 100644
index 000000000..e9e4db88b
--- /dev/null
+++ b/org.eclipse.debug.core/doc/org_eclipse_debug_core_breakpoints.html
@@ -0,0 +1,63 @@
+<!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 Breakpoints Extension Point</title>
+</head>
+
+<body link="#0000FF" vlink="#800080">
+
+<h1 align="center">Breakpoints</h1>
+
+<p><b><i>Identifier: </i></b>org.eclipse.debug.core.breakpoints </p>
+
+<p><b><i>Description: </i></b>This extension point provides a
+mechanism for defining new types of breakpoints.</p>
+
+<p><b><i>Configuration Markup:</i></b> </p>
+
+<pre>
+<tt>&nbsp;&nbsp; &lt;!ATTLIST breakpoint</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; markerType&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>&gt;
+</pre>
+
+<ul>
+ <li><code>id</code> specifies a unique identifier for this breakpoint type.</li>
+ <li><code>markerType</code> specifies the fully qualified identifier (id) of
+ the corresponding marker definition for breakpoints of this type.</li>
+ <li><code>class</code> specifies the fully qualified name of the java class
+ that implements <code>IBreakpoint</code>.</li>
+</ul>
+
+<p><b><i>Examples:</i></b> </p>
+
+<p>The following is an example of a launch configuration type extension point: </p>
+
+<pre>
+&lt;extension point="org.eclipse.debug.core.breakpoints"&gt;
+ &lt;breakpoint
+ id="com.example.ExampleBreakpoint"
+ markerType="com.example.ExampleBreakpointMarker"
+ class="com.example.ExampleBreakpointImpl"&gt;
+ &lt;/breakpoint&gt;
+&lt;/extension&gt;
+</pre>
+
+<p>In the example above, the specified type of breakpoint is implemeted by the
+class "com.example.BreakpointImpl". There is an associated
+marker definition for "com.example.ExampleBreakpointMarker", defining
+the attributes of this breakpoint.
+</p>
+
+<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.IBreakpoint</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_launch_configuration_types.html b/org.eclipse.debug.core/doc/org_eclipse_debug_core_launch_configuration_types.html
index 688e3cd91..06dfee83e 100644
--- a/org.eclipse.debug.core/doc/org_eclipse_debug_core_launch_configuration_types.html
+++ b/org.eclipse.debug.core/doc/org_eclipse_debug_core_launch_configuration_types.html
@@ -3,7 +3,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-<title>README Launcher Extension Points</title>
+<title>README Launch Configuration Types Extension Point</title>
</head>
<body link="#0000FF" vlink="#800080">

Back to the top