diff options
author | Artur Signell <artur@vaadin.com> | 2013-04-22 14:02:46 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-04-23 07:46:12 +0000 |
commit | 09cb9d88956b5c892d8dba9b1a3f3dd9cdfd078a (patch) | |
tree | 5e7916f6f8a435ff744ef492038711a7b1733bd6 /shared | |
parent | 069e4d2d870fc174df10680275fe7614274edba7 (diff) | |
download | vaadin-framework-09cb9d88956b5c892d8dba9b1a3f3dd9cdfd078a.tar.gz vaadin-framework-09cb9d88956b5c892d8dba9b1a3f3dd9cdfd078a.zip |
Renamed UI.getTooltip to getTooltipConfiguration (#11663)
Change-Id: Idd33f68171b40b4097454418b78f75aee8f76eab
Diffstat (limited to 'shared')
-rw-r--r-- | shared/src/com/vaadin/shared/ui/ui/UIState.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shared/src/com/vaadin/shared/ui/ui/UIState.java b/shared/src/com/vaadin/shared/ui/ui/UIState.java index 589744a48c..9e9f179f0b 100644 --- a/shared/src/com/vaadin/shared/ui/ui/UIState.java +++ b/shared/src/com/vaadin/shared/ui/ui/UIState.java @@ -21,7 +21,7 @@ import com.vaadin.shared.communication.PushMode; import com.vaadin.shared.ui.TabIndexState; public class UIState extends TabIndexState { - public TooltipConfiguration tooltipConfiguration = new TooltipConfiguration(); + public TooltipConfigurationState tooltipConfiguration = new TooltipConfigurationState(); public LoadingIndicatorConfiguration loadingIndicatorConfiguration = new LoadingIndicatorConfiguration(); public int pollInterval = -1; @@ -33,7 +33,7 @@ public class UIState extends TabIndexState { public int waitStateDelay = 5000; } - public static class TooltipConfiguration implements Serializable { + public static class TooltipConfigurationState implements Serializable { public int openDelay = 750; public int quickOpenDelay = 100; public int quickOpenTimeout = 1000; |