1 /*
2 * $Id: ITextCapability.java,v 1.18 2011/06/16 09:29:40 jbmeslin Exp $
3 *
4 */
5
6 package org.rcfaces.core.component.capability;
7
8 /**
9 *
10 *
11 * @author Olivier Oeuillot (latest modification by $Author: jbmeslin $)
12 * @version $Revision: 1.18 $ $Date: 2011/06/16 09:29:40 $
13 */
14 public interface ITextCapability {
15
16 /**
17 * Sets a string value specifying the text to be shown.
18 *
19 * @param text
20 * text
21 */
22 void setText(String text);
23
24 /**
25 * Returns a string value specifying the text shown.
26 *
27 * @return text
28 */
29 String getText();
30 }