KeyDownHandler abstract class
Handler interface for {@link KeyDownEvent} events.
abstract class KeyDownHandler extends EventHandler {
/**
* Called when {@link KeyDownEvent} is fired.
*
* @param event the {@link KeyDownEvent} that was fired
*/
void onKeyDown(KeyDownEvent event);
}
Extends
EventHandler > KeyDownHandler
Subclasses
Methods
abstract void onKeyDown(KeyDownEvent event) #
Called when {@link KeyDownEvent} is fired.
@param event the {@link KeyDownEvent} that was fired