blob: f483062072604151f19da34f86e37482cff71253 [file] [log] [blame]
/*******************************************************************************
* 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
*******************************************************************************/
package org.eclipse.ui.forms.events;
/**
* 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 implements 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) {
}
}