comparison org.eclipse.ui.forms/src/org/eclipse/ui/forms/events/ExpansionAdapter.d @ 12:bc29606a740c

Added dwt-addons in original directory structure of eclipse.org
author Frank Benoit <benoit@tionex.de>
date Sat, 14 Mar 2009 18:23:29 +0100
parents
children
comparison
equal deleted inserted replaced
11:43904fec5dca 12:bc29606a740c
1 /*******************************************************************************
2 * Copyright (c) 2000, 2005 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 * Port to the D programming language:
11 * Frank Benoit <benoit@tionex.de>
12 *******************************************************************************/
13 module org.eclipse.ui.forms.events.ExpansionAdapter;
14 import org.eclipse.ui.forms.events.IExpansionListener;
15 import org.eclipse.ui.forms.events.ExpansionEvent;
16 import java.lang.all;
17 /**
18 * This adapter class provides default implementations for the methods
19 * described by the <code>ExpansionListener</code> interface.
20 * <p>
21 * Classes that wish to deal with <code>ExpansionEvent</code>s can extend
22 * this class and override only the methods which they are interested in.
23 * </p>
24 *
25 * @see IExpansionListener
26 * @see ExpansionEvent
27 * @since 3.0
28 */
29 public class ExpansionAdapter : IExpansionListener {
30 /**
31 * Sent when the link is entered. The default behaviour is to do nothing.
32 *
33 * @param e
34 * the event
35 */
36 public void expansionStateChanging(ExpansionEvent e) {
37 }
38 /**
39 * Sent when the link is exited. The default behaviour is to do nothing.
40 *
41 * @param e
42 * the event
43 */
44 public void expansionStateChanged(ExpansionEvent e) {
45 }
46 }