1 /*
2 * $Id: IEmptyMessageCapability.java,v 1.18 2011/06/16 09:29:40 jbmeslin Exp $
3 *
4 */
5 package org.rcfaces.core.component.capability;
6
7 /**
8 * A string containing the message shown when there is no result.
9 *
10 * @author Olivier Oeuillot (latest modification by $Author: jbmeslin $)
11 * @version $Revision: 1.18 $ $Date: 2011/06/16 09:29:40 $
12 */
13 public interface IEmptyMessageCapability {
14
15 /**
16 * Returns a string containing the message shown when there is no result.
17 *
18 * @return message
19 */
20 String getEmptyMessage();
21
22 /**
23 * Sets the string conatining the message shown when there is no result.
24 *
25 * @param emptyMessage
26 * the message
27 */
28 void setEmptyMessage(String emptyMessage);
29 }