]> git.argeo.org Git - gpl/argeo-slc.git/blob - ILoadStatusable.js
dcb95547f00a6acdb2d054c9a221badee0a59168
[gpl/argeo-slc.git] / ILoadStatusable.js
1 /**
2 *
3 * Any component implementing this interface will generally be a user-interface indicating
4 * a "loading" status (button enabled/disabled, animated loading gif, etc...).
5 * The RequestManager can handle such an array of ILoadStatusable at the beginning/end of a Request.
6 *
7 * @author Charles du Jeu
8 */
9 qx.Interface.define("org.argeo.ria.components.ILoadStatusable", {
10
11 members : {
12 /**
13 * Sets the current status of the component.
14 * @param status {boolean} load status
15 * @return {Boolean}
16 */
17 setOnLoad : function(status){return true;}
18 }
19 });