comparison dwt/events/ExpandAdapter.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/ExpandAdapter.d@5dfd6e42e2ef
children 63c023465156
comparison
equal deleted inserted replaced
8:a1f832ca7d17 9:ad2b69216039
1 /*******************************************************************************
2 * Copyright (c) 2000, 2006 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.ExpandAdapter;
12
13 import org.eclipse.swt.events.ExpandListener;
14
15 /**
16 * This adapter class provides default implementations for the
17 * methods described by the <code>ExpandListener</code> interface.
18 * <p>
19 * Classes that wish to deal with <code>ExpandEvent</code>s can
20 * extend this class and override only the methods which they are
21 * interested in.
22 * </p>
23 *
24 * @see ExpandListener
25 * @see ExpandEvent
26 *
27 * @since 3.2
28 */
29 public abstract class ExpandAdapter : ExpandListener {
30
31 /**
32 * Sent when an item is collapsed.
33 * The default behavior is to do nothing.
34 *
35 * @param e an event containing information about the operation
36 */
37 public void itemCollapsed(ExpandEvent e) {
38 }
39
40 /**
41 * Sent when an item is expanded.
42 * The default behavior is to do nothing.
43 *
44 * @param e an event containing information about the operation
45 */
46 public void itemExpanded(ExpandEvent e) {
47 }
48 }