blob: c562f3e217dc665b2ea3168e0ce860533dd312e4 [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 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.ui.refactoring;
import org.eclipse.jdt.internal.corext.refactoring.ParameterInfo;
public interface IParameterListChangeListener {
/**
* Gets fired when the given parameter has changed
* @param parameter the parameter that has changed.
*/
void parameterChanged(ParameterInfo parameter);
/**
* Gets fired when the given parameter has been added
* @param parameter the parameter that has been added.
*/
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>))
*/
void parameterListChanged();
}