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 voidadd(java.lang.String varName)Add a targeted variable name.voiddisable()Disable this observation point.voidenable()Enable this observation point.voidremove(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:PointAdd a targeted variable name.
-
remove
public void remove(java.lang.String varName)
Description copied from class:PointRemove a targeted variable name.
-
enable
public void enable()
Description copied from class:PointEnable this observation point.
-
-