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 Modifier and Type 方法 描述 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 Modifier and Type 方法 描述 Set<AWTKeyStroke>
KeyboardFocusManager. getDefaultFocusTraversalKeys(int id)
返回给定遍历操作的一组默认焦点遍历键。Set<AWTKeyStroke>
Component. getFocusTraversalKeys(int id)
返回此组件的给定遍历操作的聚焦遍历键集。Set<AWTKeyStroke>
Container. getFocusTraversalKeys(int id)
返回此Container的给定遍历操作的聚焦遍历键集。Set<AWTKeyStroke>
Window. getFocusTraversalKeys(int id)
获取此窗口的焦点遍历键。Method parameters in java.awt with type arguments of type AWTKeyStroke Modifier and Type 方法 描述 void
KeyboardFocusManager. setDefaultFocusTraversalKeys(int id, Set<? extends AWTKeyStroke> keystrokes)
设置给定遍历操作的默认焦点遍历键。void
Component. setFocusTraversalKeys(int id, Set<? extends AWTKeyStroke> keystrokes)
设置此组件给定遍历操作的焦点遍历键。void
Container. setFocusTraversalKeys(int id, Set<? extends AWTKeyStroke> keystrokes)
设置此容器的给定遍历操作的焦点遍历键。 -
Uses of AWTKeyStroke in javax.swing
Subclasses of AWTKeyStroke in javax.swing Modifier and Type Class 描述 class
KeyStroke
KeyStroke表示键盘或等效输入设备上的关键操作。Method parameters in javax.swing with type arguments of type AWTKeyStroke Modifier and Type 方法 描述 void
JComponent. setFocusTraversalKeys(int id, Set<? extends AWTKeyStroke> keystrokes)
设置此组件给定遍历操作的焦点遍历键。
-