blob: dca3846f3b30a5883270e000de102908d9a538df [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2008 IBM Corporation and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.dltk.javascript.internal.ui.refactoring;
import org.eclipse.dltk.internal.javascript.corext.refactoring.ParameterInfo;
public interface IParameterListChangeListener {
/**
* Gets fired when the given parameter has changed
*
* @param parameter
* the parameter that has changed.
*/
public void parameterChanged(ParameterInfo parameter);
/**
* Gets fired when the given parameter has been added
*
* @param parameter
* the parameter that has been added.
*/
public void parameterAdded(ParameterInfo parameter);
/**
* Gets fired if the parameter list got modified by reordering or removing
* parameters (note that adding is handled by <code>parameterAdded</code>))
*/
public void parameterListChanged();
}