Example usage for com.google.gwt.user.client DOM eventSetKeyCode

List of usage examples for com.google.gwt.user.client DOM eventSetKeyCode

Introduction

In this page you can find the example usage for com.google.gwt.user.client DOM eventSetKeyCode.

Prototype

@Deprecated
public static void eventSetKeyCode(Event evt, char key) 

Source Link

Document

Sets the key code associated with the given keyboard event.

Usage

From source file:rocket.event.client.KeyEvent.java

License:Apache License

public void setKey(final int key) {
    DOM.eventSetKeyCode(this.getEvent(), (char) key);
}