View Javadoc

1   /*
2    * $Id: IFacesEvent.java,v 1.1 2010/03/19 14:48:18 oeuillot Exp $
3    */
4   package org.rcfaces.core.event;
5   
6   import javax.faces.component.UIComponent;
7   import javax.faces.event.PhaseId;
8   
9   /**
10   * 
11   * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
12   * @version $Revision: 1.1 $ $Date: 2010/03/19 14:48:18 $
13   */
14  public interface IFacesEvent {
15      UIComponent getComponent();
16  
17      PhaseId getPhaseId();
18  
19  }