summaryrefslogtreecommitdiffstats
path: root/shared
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2013-04-22 14:18:32 +0300
committerVaadin Code Review <review@vaadin.com>2013-04-23 07:46:49 +0000
commitc844d94b81b2645f2800e17557fe6e300e85de96 (patch)
tree4060a5eeb3c7a1a9c96b88cbb6a3b2cfa0004fe5 /shared
parentf596fea90a03df5191ff65aa82cf70a879809774 (diff)
downloadvaadin-framework-c844d94b81b2645f2800e17557fe6e300e85de96.tar.gz
vaadin-framework-c844d94b81b2645f2800e17557fe6e300e85de96.zip
Renamed loading indicator states to 'first','second','third' (#11668)
Change-Id: I127070e2014bebf8aa09778b2dffee5481845ab4
Diffstat (limited to 'shared')
-rw-r--r--shared/src/com/vaadin/shared/ui/ui/UIState.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/shared/src/com/vaadin/shared/ui/ui/UIState.java b/shared/src/com/vaadin/shared/ui/ui/UIState.java
index ee3478f0a0..e8be9d674c 100644
--- a/shared/src/com/vaadin/shared/ui/ui/UIState.java
+++ b/shared/src/com/vaadin/shared/ui/ui/UIState.java
@@ -27,10 +27,11 @@ public class UIState extends TabIndexState {
public PushMode pushMode = PushMode.DISABLED;
- public static class LoadingIndicatorConfigurationState implements Serializable {
- public int initialDelay = 300;
- public int delayStateDelay = 1500;
- public int waitStateDelay = 5000;
+ public static class LoadingIndicatorConfigurationState implements
+ Serializable {
+ public int firstDelay = 300;
+ public int secondDelay = 1500;
+ public int thirdDelay = 5000;
}
public static class TooltipConfigurationState implements Serializable {