public class

BasicTableUI.KeyHandler

extends Object
implements KeyListener
java.lang.Object
   ↳ javax.swing.plaf.basic.BasicTableUI.KeyHandler

Class Overview

This inner class is marked "public" due to a compiler bug. This class should be treated as a "protected" inner class. Instantiate it only within subclasses of BasicTableUI.

As of Java 2 platform v1.3 this class is no longer used. Instead JTable overrides processKeyBinding to dispatch the event to the current TableCellEditor.

Summary

Public Constructors
BasicTableUI.KeyHandler()
Public Methods
void keyPressed(KeyEvent e)
Invoked when a key has been pressed.
void keyReleased(KeyEvent e)
Invoked when a key has been released.
void keyTyped(KeyEvent e)
Invoked when a key has been typed.
[Expand]
Inherited Methods
From class java.lang.Object
From interface java.awt.event.KeyListener

Public Constructors

public BasicTableUI.KeyHandler ()

Public Methods

public void keyPressed (KeyEvent e)

Invoked when a key has been pressed. See the class description for KeyEvent for a definition of a key pressed event.

public void keyReleased (KeyEvent e)

Invoked when a key has been released. See the class description for KeyEvent for a definition of a key released event.

public void keyTyped (KeyEvent e)

Invoked when a key has been typed. See the class description for KeyEvent for a definition of a key typed event.