1 /*
2 * $Id: IShowValueCapability.java,v 1.2 2007/05/24 12:26:16 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.2 $ $Date: 2007/05/24 12:26:16 $
10 */
11 public interface IShowValueCapability {
12
13 /**
14 *
15 * @return The value of the item will be shown.
16 */
17 Object getShowValue();
18
19 /**
20 * Set the value of the item will be shown.
21 *
22 * @param value
23 * The value of the item
24 */
25 void setShowValue(Object value);
26 }