Package jisd.debug
Class BreakPoint
- java.lang.Object
-
- jisd.debug.Point
-
- jisd.debug.BreakPoint
-
public class BreakPoint extends Point
Manages a breakpoint or a watchpoint.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(java.lang.String varName)
Add a targeted variable name.void
disable()
Disable this observation point.void
enable()
Enable this observation point.void
remove(java.lang.String varName)
Remove a targeted variable name.-
Methods inherited from class jisd.debug.Point
clear, clearDebugResults, equals, getClassName, getLineNumber, getMethodName, getResults, getResults, getVarNames, hashCode, isBreak, isRequested
-
-
-
-
Method Detail
-
add
public void add(java.lang.String varName)
Description copied from class:Point
Add a targeted variable name.
-
remove
public void remove(java.lang.String varName)
Description copied from class:Point
Remove a targeted variable name.
-
enable
public void enable()
Description copied from class:Point
Enable this observation point.
-
-