Package org.eclipse.debug.ui
Interface IBreakpointOrganizerDelegateExtension
-
- All Superinterfaces:
IBreakpointOrganizerDelegate
public interface IBreakpointOrganizerDelegateExtension extends IBreakpointOrganizerDelegate
Optional enhancements to theIBreakpointOrganizerDelegateinterface. 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 Summary
-
Fields inherited from interface org.eclipse.debug.ui.IBreakpointOrganizerDelegate
P_CATEGORY_CHANGED
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddBreakpoints(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.IBreakpointOrganizerDelegate
addBreakpoint, addPropertyChangeListener, canAdd, canRemove, dispose, getCategories, getCategories, removeBreakpoint, removePropertyChangeListener
-
-
-
-
Method Detail
-
addBreakpoints
void addBreakpoints(IBreakpoint[] breakpoints, IAdaptable category)
Adds the specified breakpoints to the given category. Only called ifcanAdd(...)returnstruefor the given breakpoints and category.- Parameters:
breakpoints- breakpoints addcategory- the breakpoints' new category
-
removeBreakpoints
void removeBreakpoints(IBreakpoint[] breakpoints, IAdaptable category)
Removes the specified breakpoints from the given category. Only called ifcanRemove(...)returnstruefor the given breakpoints and category.- Parameters:
breakpoints- breakpoints to removecategory- the category the breakpoint is remove from
-
-