Class RunToLineAction

  • All Implemented Interfaces:
    IAction, IUpdate

    public class RunToLineAction
    extends Action
    implements IUpdate
    Action to run to line in a vertical ruler of a workbench part containing a document. The part must provide an IRunToLineTarget adapter and ISuspendResume adapter.

    Clients may instantiate this class.

    Since:
    3.12
    See Also:
    RulerToggleBreakpointActionDelegate
    Restriction:
    This class is not intended to be subclassed by clients.
    • Constructor Detail

      • RunToLineAction

        public RunToLineAction​(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 Detail

      • 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:
        How radio buttons are handled, How check boxes are handled
      • 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:
        How radio buttons are handled, How check boxes are handled
      • 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