Check whether the debugger is currently busy. i.e. running (not suspended). @return true if the debugger is currently running and not suspended.
()
| 734 | * @return true if the debugger is currently running and not suspended. |
| 735 | */ |
| 736 | public synchronized boolean isBusy() { |
| 737 | return isStarted() && !isPaused(); |
| 738 | } |
| 739 | |
| 740 | |
| 741 | /** |
no test coverage detected