1 package org.vaadin.aceeditor.client.gwt; 2 3 4 public class GwtAceKeyboardEvent extends GwtAceEvent { 5 6 protected GwtAceKeyboardEvent() {} 7 8 public final native boolean isCtrlKey() /*-{ 9 return !!this.ctrlKey; 10 }-*/; 11 12 public final native boolean isAltKey() /*-{ 13 return !!this.altKey; 14 }-*/; 15 16 public final native boolean isShiftKey() /*-{ 17 return !!this.shiftKey; 18 }-*/; 19 20 public final native boolean getKeyCode() /*-{ 21 return this.keyCode; 22 }-*/; 23 24 }