apps.conceptmap.graphcomponents.nodes
Interface KeyboardNode.KeyboardListener

Enclosing class:
KeyboardNode

public static interface KeyboardNode.KeyboardListener

The listener interface for receiving keyboard events. The class that is interested in processing a keyboard event implements this interface, and the object created with that class is registered with a component using the component's addKeyboardListener method. When the keyboard event occurs, that object's appropriate method is invoked.

See Also:
KeyboardEvent

Method Summary
 void keyPressed(java.awt.event.KeyEvent evt)
          Key pressed.
 void keyReleased(java.awt.event.KeyEvent evt)
          Key released.
 

Method Detail

keyPressed

void keyPressed(java.awt.event.KeyEvent evt)
Key pressed.

Parameters:
evt - the evt

keyReleased

void keyReleased(java.awt.event.KeyEvent evt)
Key released.

Parameters:
evt - the evt