(float x, float y, int count)
| 231 | } |
| 232 | |
| 233 | @Override |
| 234 | public final boolean tap(float x, float y, int count) { |
| 235 | if (command != null) { |
| 236 | command.handleEvent(new FEvent(this, FEventType.TAP)); |
| 237 | } |
| 238 | return true; |
| 239 | } |
| 240 | |
| 241 | public boolean trigger() { |
| 242 | if (isEnabled() && command != null) { |
nothing calls this directly
no test coverage detected