Add a temporary hard-coded notice for the extended token validity period. This should...
[pithos] / gss / src / gr / ebs / gss / client / LoadingIndicator.java
1 /*\r
2  * Copyright 2007, 2008, 2009 Electronic Business Systems Ltd.\r
3  *\r
4  * This file is part of GSS.\r
5  *\r
6  * GSS is free software: you can redistribute it and/or modify\r
7  * it under the terms of the GNU General Public License as published by\r
8  * the Free Software Foundation, either version 3 of the License, or\r
9  * (at your option) any later version.\r
10  *\r
11  * GSS is distributed in the hope that it will be useful,\r
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14  * GNU General Public License for more details.\r
15  *\r
16  * You should have received a copy of the GNU General Public License\r
17  * along with GSS.  If not, see <http://www.gnu.org/licenses/>.\r
18  */\r
19 package gr.ebs.gss.client;\r
20 \r
21 import com.google.gwt.user.client.ui.HTML;\r
22 import com.google.gwt.user.client.ui.PopupPanel;\r
23 \r
24 /**\r
25  * The 'loading' indicator widget implementation.\r
26  */\r
27 public class LoadingIndicator extends PopupPanel {\r
28 \r
29         /**\r
30          * The widget's constructor that creates an inner div that displays the\r
31          * images specified in the stylesheet.\r
32          */\r
33         public LoadingIndicator() {\r
34                 final HTML inner = new HTML("<div id='loading-area' class='hidden'><p>Loading...</p></div>");\r
35                 setWidget(inner);\r
36         }\r
37 }\r