| stop in <class-name>.<method-name>
| Stop on entry to the given method.
|
| stop at <class-name>:<line-number>
| Stop at the given line.
|
| clear <class-name>.<method-name>
| Remove the specified breakpoint.
|
| clear <class-name>:<line-number>
| Remove the specified breakpoint.
|
| cont
| Continue (after stopping at a breakpoint).
|
| step
| Execute the current line, (after stopping at a breakpoint).
If it includes a method call, stop at the method entry.
|
| next
| Execute the current line, (after stopping at a breakpoint).
If it includes a method call, do not stop at the
method entry.
|
| step up
| Execute until the current method returns to its caller.
|