1 /*
2 * $Id: IInitializationState.java,v 1.1 2007/04/20 13:43:04 oeuillot Exp $
3 */
4 package org.rcfaces.core.internal.component;
5
6 import javax.faces.context.FacesContext;
7
8 /**
9 *
10 * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
11 * @version $Revision: 1.1 $ $Date: 2007/04/20 13:43:04 $
12 */
13 public interface IInitializationState {
14 /**
15 * Returns <code>true</code> if the component is just created.
16 *
17 * @return <code>true</code> if this component is just created !
18 */
19 boolean isConstructionState();
20
21 /**
22 * Returns the faces context.
23 */
24 FacesContext getFacesContext();
25 }