1 /*
2 * $Id: IEmptyDataMessageCapability.java,v 1.1 2008/09/09 12:49:34 oeuillot 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: oeuillot $)
11 * @version $Revision: 1.1 $ $Date: 2008/09/09 12:49:34 $
12 */
13 public interface IEmptyDataMessageCapability {
14
15 /**
16 * Returns a string containing the message shown when there is no result.
17 *
18 * @return message
19 */
20 String getEmptyDataMessage();
21
22 /**
23 * Sets the string conatining the message shown when there is no result.
24 *
25 * @param emptyDataMessage
26 * the message
27 */
28 void setEmptyDataMessage(String emptyDataMessage);
29 }