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 forKeyPressEventevents.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonKeyPress(KeyPressEvent event)Called when KeyPressEvent is fired.
-
-
-
Method Detail
-
onKeyPress
void onKeyPress(KeyPressEvent event)
Called when KeyPressEvent is fired.- Parameters:
event- theKeyPressEventthat was fired
-
-