本文整理了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
暂无
代码示例来源: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();
}
内容来源于网络,如有侵权,请联系作者删除!