blob: 0faf05b3a998a8beb705531cd92d64a568f1e642 [file] [log] [blame]
<!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 breakpoint 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>