blob: daeba33f8904c902810cb4b4e69e5238a7082b4e [file] [log] [blame]
package org.eclipse.swt.events;
/*
* Copyright (c) 2000, 2002 IBM Corp. All rights reserved.
* This file is made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*/
/**
* 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) {
}
}