()
| 212 | protected abstract void doResume(); |
| 213 | |
| 214 | @InvokableAction(name = "Pause", description = "Stops the computer, allowing reconfiguration of core elements", alternatives = "freeze;halt", defaultKeyMapping = {"meta+pause", "alt+pause"}) |
| 215 | final public boolean pause() { |
| 216 | boolean result = getRunningProperty().get(); |
| 217 | doPause(); |
| 218 | getRunningProperty().set(false); |
| 219 | return result; |
| 220 | } |
| 221 | |
| 222 | @InvokableAction(name = "Resume", description = "Resumes the computer if it was previously paused", alternatives = "unpause;unfreeze;resume;play", defaultKeyMapping = {"meta+shift+pause", "alt+shift+pause"}) |
| 223 | final public void resume() { |
no test coverage detected