Check whether the debugger is paused. i.e. it is currently suspended at a breakpoint or step. @return true if the debugger is paused, false otherwise or if not started (#isStarted())
()
| 724 | * ({@link #isStarted()}) |
| 725 | */ |
| 726 | public synchronized boolean isPaused() { |
| 727 | return isStarted() && paused && currentThread != null && currentThread.isSuspended(); |
| 728 | } |
| 729 | |
| 730 | |
| 731 | /** |
no test coverage detected