view dwtx/ui/forms/events/ExpansionAdapter.d @ 75:5d489b9f966c

Fix continue porting
author Frank Benoit <benoit@tionex.de>
date Sat, 24 May 2008 05:11:16 +0200
parents
children
line wrap: on
line source

/*******************************************************************************
 * Copyright (c) 2000, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 * Port to the D programming language:
 *     Frank Benoit <benoit@tionex.de>
 *******************************************************************************/
module dwtx.ui.forms.events.ExpansionAdapter;
import dwtx.ui.forms.events.IExpansionListener;
import dwtx.ui.forms.events.ExpansionEvent;
import dwt.dwthelper.utils;
/**
 * This adapter class provides default implementations for the methods
 * described by the <code>ExpansionListener</code> interface.
 * <p>
 * Classes that wish to deal with <code>ExpansionEvent</code>s can extend
 * this class and override only the methods which they are interested in.
 * </p>
 *
 * @see IExpansionListener
 * @see ExpansionEvent
 * @since 3.0
 */
public class ExpansionAdapter : IExpansionListener {
    /**
     * Sent when the link is entered. The default behaviour is to do nothing.
     *
     * @param e
     *            the event
     */
    public void expansionStateChanging(ExpansionEvent e) {
    }
    /**
     * Sent when the link is exited. The default behaviour is to do nothing.
     *
     * @param e
     *            the event
     */
    public void expansionStateChanged(ExpansionEvent e) {
    }
}