comparison dwt/events/SelectionAdapter.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/SelectionAdapter.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.SelectionAdapter;
12
13 import org.eclipse.swt.events.SelectionListener;
14
15 /**
16 * This adapter class provides default implementations for the
17 * methods described by the <code>SelectionListener</code> interface.
18 * <p>
19 * Classes that wish to deal with <code>SelectionEvent</code>s can
20 * extend this class and override only the methods which they are
21 * interested in.
22 * </p>
23 *
24 * @see SelectionListener
25 * @see SelectionEvent
26 */
27 public abstract class SelectionAdapter : SelectionListener {
28
29 /**
30 * Sent when selection occurs in the control.
31 * The default behavior is to do nothing.
32 *
33 * @param e an event containing information about the selection
34 */
35 public void widgetSelected(SelectionEvent e) {
36 }
37
38 /**
39 * Sent when default selection occurs in the control.
40 * The default behavior is to do nothing.
41 *
42 * @param e an event containing information about the default selection
43 */
44 public void widgetDefaultSelected(SelectionEvent e) {
45 }
46 }