org.PingOO.DLAI.lib.PWidget
Class BlockingGlassPane.BlockingKeyListener

java.lang.Object
  |
  +--java.awt.event.KeyAdapter
        |
        +--org.PingOO.DLAI.lib.PWidget.BlockingGlassPane.BlockingKeyListener

private class BlockingGlassPane.BlockingKeyListener
extends java.awt.event.KeyAdapter

Blocks all key events.

Since:
PingOO 2.0
Version:
2.0
Author:
Fabrice Bouyé (bouye@cur-archamps.fr)
See Also:
KeyListener

Constructor Summary
BlockingGlassPane.BlockingKeyListener()
          Creates a new instance.
 
Method Summary
 void keyPressed(java.awt.event.KeyEvent event)
          Action to execute when a type is pressed.
 void keyReleased(java.awt.event.KeyEvent event)
          Action to execute when a type is released.
 void keyTyped(java.awt.event.KeyEvent event)
          Action to execute when a type is typed.
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Constructor Detail

BlockingGlassPane.BlockingKeyListener

public BlockingGlassPane.BlockingKeyListener()
Creates a new instance.
Method Detail

keyReleased

public void keyReleased(java.awt.event.KeyEvent event)
Action to execute when a type is released.
Parameters:
event - The key event.
Overrides:
keyReleased in class java.awt.event.KeyAdapter

keyPressed

public void keyPressed(java.awt.event.KeyEvent event)
Action to execute when a type is pressed.
Parameters:
event - The key event.
Overrides:
keyPressed in class java.awt.event.KeyAdapter

keyTyped

public void keyTyped(java.awt.event.KeyEvent event)
Action to execute when a type is typed.
Parameters:
event - The key event.
Overrides:
keyTyped in class java.awt.event.KeyAdapter