(code, id, x, y, ticks)
| 429 | onTouchCancelled(code, id, x, y, ticks) { |
| 430 | } |
| 431 | onTouchEnded(code, id, x, y, ticks) { |
| 432 | code.stop(); |
| 433 | this.onCursorCancel(code); |
| 434 | this.onSelected(code); |
| 435 | } |
| 436 | onTouchMoved(code, id, x, y, ticks) { |
| 437 | if ((this.x != x) || (this.y != y)) |
| 438 | this.onTouchSelect(code, x, y); |
nothing calls this directly
no test coverage detected