Class ToggleBreakpointAction

All Implemented Interfaces:
IAction, IUpdate

public class ToggleBreakpointAction extends Action implements IUpdate
Action to toggle a breakpoint in a vertical ruler of a workbench part containing a document. The part must provide an IToggleBreakpointsTarget adapter which may optionally be an instance of an IToggleBreakpointsTargetExtension.

Clients may instantiate this class.

Since:
3.1
See Also:
Restriction:
This class is not intended to be subclassed by clients.
  • Constructor Details

    • ToggleBreakpointAction

      public ToggleBreakpointAction(IWorkbenchPart part, IDocument document, IVerticalRulerInfo rulerInfo)
      Constructs a new action to toggle a breakpoint in the given part containing the given document and ruler.
      Parameters:
      part - the part in which to toggle the breakpoint - provides an IToggleBreakpointsTarget adapter
      document - the document breakpoints are being set in or null when the document should be derived from the given part
      rulerInfo - specifies location the user has double-clicked
  • Method Details

    • run

      public void run()
      Description copied from class: Action
      The default implementation of this IAction method does nothing. Subclasses should override this method if they do not need information from the triggering event, or override runWithEvent(Event) if they do.
      Specified by:
      run in interface IAction
      Overrides:
      run in class Action
      See Also:
    • runWithEvent

      public void runWithEvent(Event event)
      Description copied from class: Action
      The default implementation of this IAction method ignores the event argument, and simply calls run(). Subclasses should override this method if they need information from the triggering event, or override run() if not.
      Specified by:
      runWithEvent in interface IAction
      Overrides:
      runWithEvent in class Action
      Parameters:
      event - the SWT event which triggered this action being run
      See Also:
    • dispose

      public void dispose()
      Disposes this action. Clients must call this method when this action is no longer needed.
    • update

      public void update()
      Description copied from interface: IUpdate
      Requests that this object update itself.
      Specified by:
      update in interface IUpdate