blob: 24032828e7c0839b2aa3a155d3a2127b6f95bcc3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2008 Oracle Corporation and others.
* All rights reserved. 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:
* Oracle Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.jsf.ui.internal.jsflibraryconfig;
/**
* Interface to be implemented to listen to changes in the JSFLibraryConfigControl object
* @deprecated
*/
public interface JSFLibraryConfigControlChangeListener {
/**
* Callback method
* @param e
*/
public void changed(JSFLibraryConfigControlChangeEvent e);
}