blob: 7a865a969ca37cb61dabec9008c1d6925674ae89 [file] [log] [blame]
package org.eclipse.swt.events;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved
*/
/**
* This adapter class provides default implementations for the
* methods described by the <code>KeyListener</code> interface.
* <p>
* Classes that wish to deal with <code>KeyEvent</code>s can
* extend this class and override only the methods which they are
* interested in.
* </p>
*
* @see KeyListener
* @see KeyEvent
*/
public abstract class KeyAdapter implements KeyListener {
/**
* Sent when a key is pressed on the system keyboard.
* The default behavior is to do nothing.
*
* @param e an event containing information about the key press
*/
public void keyPressed(KeyEvent e) {
}
/**
* Sent when a key is released on the system keyboard.
* The default behavior is to do nothing.
*
* @param e an event containing information about the key release
*/
public void keyReleased(KeyEvent e) {
}
}