1 /*
2 * $Id: IPartialRenderingCapability.java,v 1.1 2010/06/11 08:35:20 oeuillot Exp $
3 */
4 package org.rcfaces.core.component.capability;
5
6 /**
7 *
8 * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
9 * @version $Revision: 1.1 $ $Date: 2010/06/11 08:35:20 $
10 */
11 public interface IPartialRenderingCapability {
12 boolean isPartialRendering();
13
14 void setPartialRendering(boolean partialRendering);
15 }