Package org.eclipse.debug.ui
Interface IBreakpointOrganizerDelegateExtension
- All Superinterfaces:
- IBreakpointOrganizerDelegate
Optional enhancements to the 
IBreakpointOrganizerDelegate interface.
 Supports operations on more than one breakpoint at a time.
 
 Clients contributing a breakpoint organizer may optionally implement this
 interface when implementing IBreakpointOrganizerDelegate.
 
- Since:
- 3.3
- 
Field SummaryFields inherited from interface org.eclipse.debug.ui.IBreakpointOrganizerDelegateP_CATEGORY_CHANGED
- 
Method SummaryModifier and TypeMethodDescriptionvoidaddBreakpoints(IBreakpoint[] breakpoints, IAdaptable category) Adds the specified breakpoints to the given category.voidremoveBreakpoints(IBreakpoint[] breakpoints, IAdaptable category) Removes the specified breakpoints from the given category.Methods inherited from interface org.eclipse.debug.ui.IBreakpointOrganizerDelegateaddBreakpoint, addPropertyChangeListener, canAdd, canRemove, dispose, getCategories, getCategories, removeBreakpoint, removePropertyChangeListener
- 
Method Details- 
addBreakpointsAdds the specified breakpoints to the given category. Only called ifcanAdd(...)returnstruefor the given breakpoints and category.- Parameters:
- breakpoints- breakpoints add
- category- the breakpoints' new category
 
- 
removeBreakpointsRemoves the specified breakpoints from the given category. Only called ifcanRemove(...)returnstruefor the given breakpoints and category.- Parameters:
- breakpoints- breakpoints to remove
- category- the category the breakpoint is remove from
 
 
-