My favorites | Sign in
Project Home Downloads Wiki Issues Source
Checkout   Browse   Changes    
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.googlecode.gwtmvc.client;

/**
* Allow to 'mask' an element during a loading action.<br>
* A maskable element will show a loading indicator picture or change its style when it
* 'mask'
*/
public interface Maskable {

/**
* Mask an element, or display an animation, to indicate to the user the begin of an
* asynchronous call
*/
void mask();

/**
* Do the opposite action of mask, to indicate to the user the end of the call
*/
void unmask();

}

Change log

r317 by wokier on Nov 27, 2009   Diff
removed deprecated and PMD rules check
Go to: 
Project members, sign in to write a code review

Older revisions

r263 by wokier on Jul 28, 2009   Diff
onRender and javadoc
r242 by wokier on Jul 2, 2009   Diff
javadoc
r129 by wokier on Mar 26, 2009   Diff
Demo splitted in different packages.
Testability enhaced
All revisions of this file

File info

Size: 496 bytes, 21 lines
Powered by Google Project Hosting