Package com.google.gwt.event.dom.client
Interface KeyPressHandler
-
- All Superinterfaces:
EventHandler
- All Known Implementing Classes:
HandlesAllKeyEvents
,ListenerWrapper.WrappedKeyboardListener
public interface KeyPressHandler extends EventHandler
Handler interface forKeyPressEvent
events.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onKeyPress(KeyPressEvent event)
Called when KeyPressEvent is fired.
-
-
-
Method Detail
-
onKeyPress
void onKeyPress(KeyPressEvent event)
Called when KeyPressEvent is fired.- Parameters:
event
- theKeyPressEvent
that was fired
-
-