comparison dwt/events/KeyAdapter.d @ 9:ad2b69216039

moved org.eclipse.swt to dwt
author Frank Benoit <benoit@tionex.de>
date Sat, 05 Jan 2008 17:39:49 +0100
parents org/eclipse/swt/events/KeyAdapter.d@5dfd6e42e2ef
children 63c023465156
comparison
equal deleted inserted replaced
8:a1f832ca7d17 9:ad2b69216039
1 /*******************************************************************************
2 * Copyright (c) 2000, 2003 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/
11 module org.eclipse.swt.events.KeyAdapter;
12
13 import org.eclipse.swt.events.KeyListener;
14
15 /**
16 * This adapter class provides default implementations for the
17 * methods described by the <code>KeyListener</code> interface.
18 * <p>
19 * Classes that wish to deal with <code>KeyEvent</code>s can
20 * extend this class and override only the methods which they are
21 * interested in.
22 * </p>
23 *
24 * @see KeyListener
25 * @see KeyEvent
26 */
27 public abstract class KeyAdapter : KeyListener {
28
29 /**
30 * Sent when a key is pressed on the system keyboard.
31 * The default behavior is to do nothing.
32 *
33 * @param e an event containing information about the key press
34 */
35 public void keyPressed(KeyEvent e) {
36 }
37
38 /**
39 * Sent when a key is released on the system keyboard.
40 * The default behavior is to do nothing.
41 *
42 * @param e an event containing information about the key release
43 */
44 public void keyReleased(KeyEvent e) {
45 }
46 }