- java.lang.Object
-
- java.awt.event.KeyAdapter
-
- javax.swing.plaf.basic.BasicComboBoxUI.KeyHandler
-
- All Implemented Interfaces:
-
KeyListener
,EventListener
- Enclosing class:
- BasicComboBoxUI
public class BasicComboBoxUI.KeyHandler extends KeyAdapter
该侦听器检查键事件是否不是导航键。 如果它找到一个不是导航键的键事件,它将它分派到JComboBox.selectWithKeyChar(),以便它可以执行预先键入。 这个公共内部类应该被视为受保护的。 仅在BasicComboBoxUI
子类中实例化。
-
-
构造方法摘要
构造方法 Constructor 描述 KeyHandler()
-
-
-
方法详细信息
-
keyPressed
public void keyPressed(KeyEvent e)
描述从类复制:KeyAdapter
按下键时调用。- Specified by:
-
keyPressed
在接口KeyListener
- 重写:
-
keyPressed
在KeyAdapter
- 参数
-
e
- 要处理的事件
-
-