1 /*
2 * $Id: IAlertLoadingMessageCapability.java,v 1.1.2.1 2011/01/27 13:41:32 flefevere Exp $
3 *
4 */
5 package org.rcfaces.core.component.capability;
6
7 /**
8 *
9 * @author Fred (latest modification by $Author: flefevere $)
10 * @version $Revision: 1.1.2.1 $ $Date: 2011/01/27 13:41:32 $
11 */
12 public interface IAlertLoadingMessageCapability {
13
14 /**
15 * Returns a string value containing the message to show when the user attempts an action while loading
16 *
17 * @return alertLoadingMessage string property
18 */
19 String getAlertLoadingMessage();
20
21 /**
22 * Sets a string value containing the message to show when the user attempts an action while loading
23 * if not set, the default value is shown
24 * if set to empty string, no message is shown
25 *
26 * @param alertLoadingMessage
27 * alertLoadingMessage string property
28 */
29 void setAlertLoadingMessage(String alertLoadingMessage);
30 }