()
| 445 | timer.schedule(repeater, 400, 100); |
| 446 | } |
| 447 | public static void stop() { |
| 448 | Timer t = timer; |
| 449 | if (null != t) { |
| 450 | t.cancel(); |
| 451 | t = null; |
| 452 | } |
| 453 | } |
| 454 | |
| 455 | private KeyRepeatTimer(int keyCode) { |
| 456 | key = keyCode; |
no test coverage detected