MCPcopy Index your code
hub / github.com/processing/processing / isStarted

Method isStarted

java/src/processing/mode/java/Debugger.java:714–716  ·  view source on GitHub ↗

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.

()

Source from the content-addressed store, hash-verified

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 /**

Callers 11

getMainClassMethod · 0.95
startDebugMethod · 0.95
continueDebugMethod · 0.95
stepMethod · 0.95
setBreakpointMethod · 0.95
isPausedMethod · 0.95
isBusyMethod · 0.95
resumeOtherThreadsMethod · 0.95
handleRunMethod · 0.80
handleStopMethod · 0.80
setCodeMethod · 0.80

Calls 1

vmMethod · 0.45

Tested by

no test coverage detected