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

Method isPaused

java/src/processing/mode/java/Debugger.java:726–728  ·  view source on GitHub ↗

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())

()

Source from the content-addressed store, hash-verified

724 * ({@link #isStarted()})
725 */
726 public synchronized boolean isPaused() {
727 return isStarted() && paused && currentThread != null && currentThread.isSuspended();
728 }
729
730
731 /**

Callers 8

continueDebugMethod · 0.95
stepMethod · 0.95
setBreakpointMethod · 0.95
isBusyMethod · 0.95
printThreadsMethod · 0.95
attachMethod · 0.80
setMethod · 0.80
removeMethod · 0.80

Calls 1

isStartedMethod · 0.95

Tested by

no test coverage detected