blob: 49a48a5c19c7a6caa02291aee623fb2cb7421092 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 Oracle Corporation.
* 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:
* Ian Trimble - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.jsf.core.jsfappconfig;
/**
* Interface that an Object wishing to be notified about changes to the Set of
* IJSFAppConfigProvider instances implements.
*
* <p><b>Provisional API - subject to change</b></p>
*
* @author Ian Trimble - Oracle.
*/
public interface IJSFAppConfigProvidersChangeListener {
/**
* Callback method indicating a change in the Set of JSFAppConfigProvider
* instances.
*
* @param event JSFAppConfigProvidersChangeEvent instance.
*/
public void changedJSFAppConfigProviders(JSFAppConfigProvidersChangeEvent event);
}