Toggle Breakpoints Target Factories

Identifier:
org.eclipse.debug.ui.toggleBreakpointsTargetFactories

Since:
3.5

Description:
This extension point provides a mechanism for contributing breakpoint toggle action targets which can be registered for specific editors, debug models, or files.

Configuration Markup:

<!ELEMENT extension (toggleTargetFactory+)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT toggleTargetFactory (enablement?)>

<!ATTLIST toggleTargetFactory

id    CDATA #REQUIRED

class CDATA #REQUIRED>

Element declaring a toggle breakpoints target factory. This element can optionally contain an enablement element which determines when this factory is going to be applicable. The evaluation context for the enablement expression includes: (default variable) - the active workbench part of type IWorkbenchPart "debugContext" - currently active debug context selection, of type List "editorInput" - the editor input to the editor if the currently active part is an editor, of type IEditorInput "selection" - the current selection in the active part, of type List



Examples:
The following is an example of a breakpoint toggle target factory extension.


 <extension point="org.eclipse.debug.ui.toggleBreakpointsTargetFactories">
  <toggleTargetFactory
   id="com.example.ExampleBreakpointToggleTargetFactory"
   class="com.example.BreakpointToggleTargetFactory">
      <enablement>
         <!-- Test the active debug context.  Enable only if the active context
              is an element from "Example" debugger, or if there is no debug context 
              associated with the context element.  Also enable if debug context is
              empty -->
         <with variable="debugContext">
            <iterate>
             <or>
                <test property="org.eclipse.debug.ui.getModelIdentifier" value="com.example.model"/>
                <test property="org.eclipse.debug.ui.getModelIdentifier" value=""/>
             </or>
         </iterate>
         </with>
         <!-- If the debug context matches of if there isno active debug context.  
              Enable the breakpoint toggle for the "Example" editors -->
         <instanceof value="com.example.Editor"/>
      </enablement>
  </toggleTargetFactory>
 </extension>

API Information:
Value of the attribute class must be a fully qualified name of a Java class that implements the interface org.eclipse.debug.ui.actions.IToggleBreakpointsTargetFactory.

Supplied Implementation:
[Enter information about supplied implementation of this extension point.]


Copyright (c) 2007, 2011 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-v20.html/ SPDX-License-Identifier: EPL-2.0