Uses of Class
java.awt.AWTKeyStroke
-
Packages that use AWTKeyStroke 软件包 描述 java.awt 包含用于创建用户界面和绘制图形和图像的所有类。javax.swing 提供一组“轻量级”(全Java语言)组件,这些组件在所有平台上尽可能地工作。 -
-
Uses of AWTKeyStroke in java.awt
Methods in java.awt that return AWTKeyStroke 变量和类型 方法 描述 static AWTKeyStroke
AWTKeyStroke. getAWTKeyStroke(char keyChar)
返回AWTKeyStroke
的共享实例,该实例表示指定字符的KEY_TYPED
事件。static AWTKeyStroke
AWTKeyStroke. getAWTKeyStroke(int keyCode, int modifiers)
给定数字键代码和一组修饰符,返回AWTKeyStroke
的共享实例。static AWTKeyStroke
AWTKeyStroke. getAWTKeyStroke(int keyCode, int modifiers, boolean onKeyRelease)
返回AWTKeyStroke
的共享实例,给定数字键代码和一组修饰符,指定在按下或释放键时是否激活该键。static AWTKeyStroke
AWTKeyStroke. getAWTKeyStroke(Character keyChar, int modifiers)
返回AWTKeyStroke
的共享实例,该实例表示指定Character对象和一组修饰符的KEY_TYPED
事件。static AWTKeyStroke
AWTKeyStroke. getAWTKeyStroke(String s)
解析一个字符串并返回AWTKeyStroke
。static AWTKeyStroke
AWTKeyStroke. getAWTKeyStrokeForEvent(KeyEvent anEvent)
返回AWTKeyStroke
,表示生成给定KeyEvent
。Methods in java.awt that return types with arguments of type AWTKeyStroke 变量和类型 方法 描述 Set<AWTKeyStroke>
KeyboardFocusManager. getDefaultFocusTraversalKeys(int id)
返回给定遍历操作的一组默认焦点遍历键。Set<AWTKeyStroke>
Component. getFocusTraversalKeys(int id)
返回此Component的给定遍历操作的焦点遍历键Set。Set<AWTKeyStroke>
Container. getFocusTraversalKeys(int id)
返回此Container的给定遍历操作的焦点遍历键集。Set<AWTKeyStroke>
Window. getFocusTraversalKeys(int id)
获取此Window的焦点遍历键。Method parameters in java.awt with type arguments of type AWTKeyStroke 变量和类型 方法 描述 void
KeyboardFocusManager. setDefaultFocusTraversalKeys(int id, Set<? extends AWTKeyStroke> keystrokes)
设置给定遍历操作的默认焦点遍历键。void
Component. setFocusTraversalKeys(int id, Set<? extends AWTKeyStroke> keystrokes)
为此Component的给定遍历操作设置焦点遍历键。void
Container. setFocusTraversalKeys(int id, Set<? extends AWTKeyStroke> keystrokes)
为此Container的给定遍历操作设置焦点遍历键。 -
Uses of AWTKeyStroke in javax.swing
Subclasses of AWTKeyStroke in javax.swing 变量和类型 类 描述 class
KeyStroke
KeyStroke表示键盘或等效输入设备上的键操作。Method parameters in javax.swing with type arguments of type AWTKeyStroke 变量和类型 方法 描述 void
JComponent. setFocusTraversalKeys(int id, Set<? extends AWTKeyStroke> keystrokes)
为此Component的给定遍历操作设置焦点遍历键。
-