所有类
javax.swing.plaf.basic
类 BasicTableUI.KeyHandler
java.lang.Object
javax.swing.plaf.basic.BasicTableUI.KeyHandler
- 所有已实现的接口:
- KeyListener, EventListener
- 正在封闭类:
- BasicTableUI
-
public class BasicTableUI.KeyHandler
- extends Object
- implements KeyListener
此内部类因编译器故障而被标记为“公开”。此类应该视为“受保护”内部类。仅在 BasicTableUI 的子类中实例化此类。
从 Java 2 平台 v1.3 开始,不再使用此类。转而通过 JTable
重写 processKeyBinding
将事件指派给当前的 TableCellEditor
。
从类 java.lang.Object 继承的方法 |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
BasicTableUI.KeyHandler
public BasicTableUI.KeyHandler()
keyPressed
public void keyPressed(KeyEvent e)
- 从接口
KeyListener
复制的描述
-
按下某个键时调用此方法。有关按下键事件的定义,请参见
KeyEvent
的类描述。
-
- 指定者:
-
接口
KeyListener
中的 keyPressed
-
keyReleased
public void keyReleased(KeyEvent e)
- 从接口
KeyListener
复制的描述
-
释放某个键时调用此方法。有关释放键事件的定义,请参见
KeyEvent
的类描述。
-
- 指定者:
-
接口
KeyListener
中的 keyReleased
-
keyTyped
public void keyTyped(KeyEvent e)
- 从接口
KeyListener
复制的描述
-
键入某个键时调用此方法。有关键入键事件的定义,请参见
KeyEvent
的类描述。
-
- 指定者:
-
接口
KeyListener
中的 keyTyped
-
所有类