KeyUpHandler abstract class
Handler interface for {@link KeyUpEvent} events.
abstract class KeyUpHandler extends EventHandler {
/**
* Called when KeyUpEvent is fired.
*
* @param event the {@link KeyUpEvent} that was fired
*/
void onKeyUp(KeyUpEvent event);
}
Extends
EventHandler > KeyUpHandler
Subclasses
AutoDirectionHandler, KeyUpHandlerAdapter
Methods
abstract void onKeyUp(KeyUpEvent event) #
Called when KeyUpEvent is fired.
@param event the {@link KeyUpEvent} that was fired