blob: 7f40db6c714cddaff2025e7ab870255c051c1138 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 Oracle Corporation.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Ian Trimble - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.jsf.core.jsfappconfig;
import org.eclipse.emf.common.notify.Notification;
/**
* IFacesConfigChangeListener is the interface that must be implemented by
* objects interested in receiving notification of changes to application
* configuration models.
*
* <p><b>Provisional API - subject to change</b></p>
*
* @author Ian Trimble - Oracle
*/
public interface IFacesConfigChangeListener {
/**
* Called when a change in an application configuration model for which
* this listener has been registered occurs.
*
* @param notification EMF {@link Notification} instance that describes the
* model change.
*/
public void notifyChanged(Notification notification);
}