com.google.gwt.event.dom.client.KeyEvent.getNativeEvent()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(2.6k)|赞(0)|评价(0)|浏览(129)

本文整理了Java中com.google.gwt.event.dom.client.KeyEvent.getNativeEvent()方法的一些代码示例,展示了KeyEvent.getNativeEvent()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。KeyEvent.getNativeEvent()方法的具体详情如下:
包路径:com.google.gwt.event.dom.client.KeyEvent
类名称:KeyEvent
方法名:getNativeEvent

KeyEvent.getNativeEvent介绍

暂无

代码示例

代码示例来源:origin: com.google.gwt/gwt-servlet

/**
 * Is the <code>alt</code> key down?
 * 
 * @return whether the alt key is down
 */
public boolean isAltKeyDown() {
 return getNativeEvent().getAltKey();
}

代码示例来源:origin: com.google.gwt/gwt-servlet

/**
 * Is the <code>control</code> key down?
 * 
 * @return whether the control key is down
 */
public boolean isControlKeyDown() {
 return getNativeEvent().getCtrlKey();
}

代码示例来源:origin: com.google.gwt/gwt-servlet

/**
 * Is the <code>meta</code> key down?
 * 
 * @return whether the meta key is down
 */
public boolean isMetaKeyDown() {
 return getNativeEvent().getMetaKey();
}

代码示例来源:origin: com.google.gwt/gwt-servlet

/**
  * Is the <code>shift</code> key down?
  * 
  * @return whether the shift key is down
  */
 public boolean isShiftKeyDown() {
  return getNativeEvent().getShiftKey();
 }
}

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

/**
 * Is the <code>control</code> key down?
 * 
 * @return whether the control key is down
 */
public boolean isControlKeyDown() {
 return getNativeEvent().getCtrlKey();
}

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

/**
  * Is the <code>shift</code> key down?
  * 
  * @return whether the shift key is down
  */
 public boolean isShiftKeyDown() {
  return getNativeEvent().getShiftKey();
 }
}

代码示例来源:origin: net.wetheinter/gwt-user

/**
 * Is the <code>alt</code> key down?
 * 
 * @return whether the alt key is down
 */
public boolean isAltKeyDown() {
 return getNativeEvent().getAltKey();
}

代码示例来源:origin: net.wetheinter/gwt-user

/**
 * Is the <code>control</code> key down?
 * 
 * @return whether the control key is down
 */
public boolean isControlKeyDown() {
 return getNativeEvent().getCtrlKey();
}

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

/**
 * Is the <code>meta</code> key down?
 * 
 * @return whether the meta key is down
 */
public boolean isMetaKeyDown() {
 return getNativeEvent().getMetaKey();
}

代码示例来源:origin: net.wetheinter/gwt-user

/**
 * Is the <code>meta</code> key down?
 * 
 * @return whether the meta key is down
 */
public boolean isMetaKeyDown() {
 return getNativeEvent().getMetaKey();
}

代码示例来源:origin: net.wetheinter/gwt-user

/**
  * Is the <code>shift</code> key down?
  * 
  * @return whether the shift key is down
  */
 public boolean isShiftKeyDown() {
  return getNativeEvent().getShiftKey();
 }
}

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

/**
 * Is the <code>alt</code> key down?
 * 
 * @return whether the alt key is down
 */
public boolean isAltKeyDown() {
 return getNativeEvent().getAltKey();
}

相关文章