com.github.croesch.micro_debug.gui.components.api
Interface ILineBreakPointManager

All Known Implementing Classes:
LineBreakPointHandler, MacroLineBreakpointHandler, MicroLineBreakpointHandler

public interface ILineBreakPointManager

A component that is able to manage some breakpoints.

Since:
Date: Mar 21, 2012
Author:
croesch

Method Summary
 boolean isBreakpoint(int line)
          Returns whether there is currently a breakpoint set for the given line.
 void toggleBreakpoint(int line)
          Toggles the breakpoint for the given line: Switches it on, if it was off; switches it off, if it was on.
 

Method Detail

toggleBreakpoint

void toggleBreakpoint(int line)
Toggles the breakpoint for the given line: Switches it on, if it was off; switches it off, if it was on.

Parameters:
line - the number of the line to toggle the breakpoint
Since:
Date: Mar 21, 2012

isBreakpoint

boolean isBreakpoint(int line)
Returns whether there is currently a breakpoint set for the given line.

Parameters:
line - the number of the line that should be checked for a breakpoint.
Returns:
true whether there is currently a breakpoint in the given line,
false otherwise.
Since:
Date: Mar 21, 2012


Copyright © 2012. All Rights Reserved.