BreakpointExtension

Identifier:
org.eclipse.cdt.debug.core.BreakpointExtension

Description:
This extension point defines a mechanism for defining a debug model specific extension to C breakpoints.

Configuration Markup:

<!ELEMENT extension (breakpointExtension*)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT breakpointExtension EMPTY>

<!ATTLIST breakpointExtension

id           CDATA #REQUIRED

markerType   CDATA #REQUIRED

class        CDATA #REQUIRED

debugModelId CDATA #REQUIRED>


Examples:
The following is an example of a breakpoint extension extension point.


 <extension point="org.eclipse.cdt.debug.BreakpointExtension">
  <breakpointExtension
   id="com.example.ExampleBreakpointExtension"
   markerType="com.example.ExampleBreakpointMarker"
   debugModeId="com.example.debug"
   class="com.example.BreakpointExtensionImpl">
  </breakpointExtension>
 </extension>

In the example above, the specified type of breakpoint extension is implemented by the class "com.example.BreakpointExtensionImpl". This extension is going to apply to breakpoints with markers extending "com.example.ExampleBreakpointMarker", and to debug model with ID of "com.example.debug".

API Information:
Value of the attribute class must be a fully qualified name of a Java class that implements the interface org.eclipse.cdt.debug.core.model.ICBreakpointExtension, and which supplies a constructor with a single argument of type org.eclipse.cdt.debug.core.model.ICBreakpoint.


Copyright (c) 2007 Wind River Systems and others.
This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-2.0/ t; t;SPDX-License-Identifier: EPL-2.0