1 /*
2 * $Id: IPartialRenderingContext.java,v 1.1 2010/06/11 08:35:37 oeuillot Exp $
3 */
4 package org.rcfaces.core.partialRendering;
5
6 import java.util.Map;
7
8 import javax.faces.component.UIComponent;
9
10 /**
11 *
12 * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
13 * @version $Revision: 1.1 $ $Date: 2010/06/11 08:35:37 $
14 */
15 public interface IPartialRenderingContext {
16 void register(UIComponent component);
17
18 void update(UIComponent component, String property, Map parameters);
19 }