Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (1.8 kB)

1 e6e9f6e6 Christos KK Loverdos
/*
2 e6e9f6e6 Christos KK Loverdos
 * Copyright 2011-2013 GRNET S.A. All rights reserved.
3 e6e9f6e6 Christos KK Loverdos
 *
4 e6e9f6e6 Christos KK Loverdos
 * Redistribution and use in source and binary forms, with or
5 e6e9f6e6 Christos KK Loverdos
 * without modification, are permitted provided that the following
6 e6e9f6e6 Christos KK Loverdos
 * conditions are met:
7 e6e9f6e6 Christos KK Loverdos
 *
8 e6e9f6e6 Christos KK Loverdos
 *   1. Redistributions of source code must retain the above
9 e6e9f6e6 Christos KK Loverdos
 *      copyright notice, this list of conditions and the following
10 e6e9f6e6 Christos KK Loverdos
 *      disclaimer.
11 e6e9f6e6 Christos KK Loverdos
 *
12 e6e9f6e6 Christos KK Loverdos
 *   2. Redistributions in binary form must reproduce the above
13 e6e9f6e6 Christos KK Loverdos
 *      copyright notice, this list of conditions and the following
14 e6e9f6e6 Christos KK Loverdos
 *      disclaimer in the documentation and/or other materials
15 e6e9f6e6 Christos KK Loverdos
 *      provided with the distribution.
16 e6e9f6e6 Christos KK Loverdos
 *
17 e6e9f6e6 Christos KK Loverdos
 * THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
18 e6e9f6e6 Christos KK Loverdos
 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 e6e9f6e6 Christos KK Loverdos
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20 e6e9f6e6 Christos KK Loverdos
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
21 e6e9f6e6 Christos KK Loverdos
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 e6e9f6e6 Christos KK Loverdos
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 e6e9f6e6 Christos KK Loverdos
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
24 e6e9f6e6 Christos KK Loverdos
 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
25 e6e9f6e6 Christos KK Loverdos
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 e6e9f6e6 Christos KK Loverdos
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
27 e6e9f6e6 Christos KK Loverdos
 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 e6e9f6e6 Christos KK Loverdos
 * POSSIBILITY OF SUCH DAMAGE.
29 e6e9f6e6 Christos KK Loverdos
 *
30 e6e9f6e6 Christos KK Loverdos
 * The views and conclusions contained in the software and
31 e6e9f6e6 Christos KK Loverdos
 * documentation are those of the authors and should not be
32 e6e9f6e6 Christos KK Loverdos
 * interpreted as representing official policies, either expressed
33 e6e9f6e6 Christos KK Loverdos
 * or implied, of GRNET S.A.
34 e6e9f6e6 Christos KK Loverdos
 */
35 e6e9f6e6 Christos KK Loverdos
36 c3d9289b Christos Stathis
package gr.grnet.pithos.web.client;
37 c3d9289b Christos Stathis
38 c3d9289b Christos Stathis
import com.google.gwt.user.client.ui.Label;
39 c3d9289b Christos Stathis
import com.google.gwt.user.client.ui.PopupPanel;
40 c3d9289b Christos Stathis
41 c3d9289b Christos Stathis
public class PleaseWaitPopup extends PopupPanel {
42 c3d9289b Christos Stathis
43 c3d9289b Christos Stathis
        public PleaseWaitPopup() {
44 c3d9289b Christos Stathis
                setGlassEnabled(true);
45 c3d9289b Christos Stathis
                setModal(true);
46 c3d9289b Christos Stathis
                add(new Label("Please wait ..."));
47 c3d9289b Christos Stathis
        }
48 c3d9289b Christos Stathis
}