1 /*
2 * $Id: IHeaderVisibilityCapability.java,v 1.1 2007/05/31 10:12:49 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: 2007/05/31 10:12:49 $
10 */
11 public interface IHeaderVisibilityCapability {
12
13 /**
14 * Returns a boolean value indicating wether the header should be visible.
15 *
16 * @return true if the header is visible
17 */
18 boolean isHeaderVisible();
19
20 /**
21 * Sets a boolean value indicating wether the header should be visible.
22 *
23 * @param headerVisible
24 * true if the header should be visible
25 */
26 void setHeaderVisible(boolean headerVisible);
27
28 }