(int keyCode)
| 228 | } |
| 229 | |
| 230 | @Override |
| 231 | public boolean keyDown(int keyCode) { |
| 232 | return startEdit(); //start edit if keyDown received while key input not active |
| 233 | } |
| 234 | |
| 235 | public boolean startEdit() { |
| 236 | if (readOnly) { return false; } |
nothing calls this directly
no test coverage detected