Check whether a debugging session is running. i.e. the debugger is connected to a debuggee VM, VMStartEvent has been received and main class is loaded. @return true if the debugger is started.
()
| 712 | * @return true if the debugger is started. |
| 713 | */ |
| 714 | public synchronized boolean isStarted() { |
| 715 | return started && runtime != null && runtime.vm() != null; |
| 716 | } |
| 717 | |
| 718 | |
| 719 | /** |
no test coverage detected