1 /*
2 * $Id: IAdditionalInformationListener.java,v 1.1 2007/07/05 13:32:58 oeuillot Exp $
3 *
4 */
5 package org.rcfaces.core.event;
6
7 import javax.faces.event.AbortProcessingException;
8 import javax.faces.event.FacesListener;
9
10 /**
11 * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
12 * @version $Revision: 1.1 $ $Date: 2007/07/05 13:32:58 $
13 */
14 public interface IAdditionalInformationListener extends FacesListener {
15
16 void processAdditionalInformation(AdditionalInformationEvent event)
17 throws AbortProcessingException;
18 }