KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > swingwt > awt > event > KeyListener


1 /*
2    SwingWT
3    Copyright(c)2003-2004, R. Rawson-Tetley
4
5    For more information on distributing and using this program, please
6    see the accompanying "COPYING" file.
7    Contact me by electronic mail: bobintetley@users.sourceforge.net
8
9    $Log: KeyListener.java,v $
10    Revision 1.5 2003/12/14 09:13:38 bobintetley
11    Added CVS log to source headers
12
13 */

14
15
16 package swingwt.awt.event;
17
18
19 public interface KeyListener extends EventListener {
20     public void keyTyped(KeyEvent e);
21     public void keyPressed(KeyEvent e);
22     public void keyReleased(KeyEvent e);
23 }
24
Popular Tags