Statistics
| Branch: | Tag: | Revision:

root / src / gr / grnet / pithos / web / client / PleaseWaitPopup.java @ a16cddac

History | View | Annotate | Download (295 Bytes)

1
package gr.grnet.pithos.web.client;
2

    
3
import com.google.gwt.user.client.ui.Label;
4
import com.google.gwt.user.client.ui.PopupPanel;
5

    
6
public class PleaseWaitPopup extends PopupPanel {
7

    
8
        public PleaseWaitPopup() {
9
                setGlassEnabled(true);
10
                setModal(true);
11
                add(new Label("Please wait ..."));
12
        }
13
}