blob: 1af48f47e063669b32812cafac0167fd3a2a7d1b [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;
public interface IExceptionListChangeListener {
/**
* Gets fired if the exception list got modified by adding or removing exceptions
*/
void exceptionListChanged();
// /**
// * Gets fired when the given parameter has changed
// * @param parameter the parameter that has changed.
// */
// public void exceptionChanged(ExceptionInfo exception);
//
// /**
// * Gets fired when the given exception has been added
// * @param exception the exception that has been added.
// */
// public void exceptionAdded(ExceptionInfo exception);
//
//
// /**
// * Gets fired if the exception list got modified by reordering or removing
// * exceptions (note that adding is handled by <code>exceptionAdded</code>))
// */
// public void exceptionListChanged();
}