public interface EventGeneratorsHandler
Event| Modifier and Type | Method and Description |
|---|---|
boolean |
handleButton(int event)
Handles button events.
|
boolean |
handleCommand(int event)
Handles command events.
|
boolean |
handleKeyboard(int event)
Handles keyboard events.
|
boolean |
handleKeypad(int event)
Handles keypad events.
|
boolean |
handlePointer(int event)
Handles pointer events.
|
boolean handleButton(int event)
event - the button event to handle.true if the event is consumed, false otherwise.boolean handleCommand(int event)
event - the command event to handle.true if the event is consumed, false otherwise.boolean handleKeyboard(int event)
event - the keyboard event to handle.true if the event is consumed, false otherwise.boolean handleKeypad(int event)
event - the keypad event to handle.true if the event is consumed, false otherwise.boolean handlePointer(int event)
event - the pointer event to handle.true if the event is consumed, false otherwise.