(boolean paused)
| 175 | } |
| 176 | |
| 177 | public synchronized void setPaused(boolean paused) { |
| 178 | // if (this.paused != paused) { |
| 179 | // System.out.println(getDeviceName() + " " + (paused ? "PAUSED" : "UNPAUSED")); |
| 180 | // Thread.dumpStack(); |
| 181 | // } |
| 182 | this.paused = paused; |
| 183 | updateTickHandler(); |
| 184 | } |
| 185 | |
| 186 | protected abstract String getDeviceName(); |
| 187 |
no test coverage detected