diff options
author | Artur Signell <artur@vaadin.com> | 2013-02-28 10:39:58 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2013-02-28 10:39:58 +0200 |
commit | 3cf6913c9a714512f8285a54c1ddcf19f2d97e6a (patch) | |
tree | 783a43b2940e0fc70f52d58a215887f2ab2e2b83 /server/src/com | |
parent | be759f8424beb3e4c20f3851c5c2bbea8e0df2f4 (diff) | |
download | vaadin-framework-3cf6913c9a714512f8285a54c1ddcf19f2d97e6a.tar.gz vaadin-framework-3cf6913c9a714512f8285a54c1ddcf19f2d97e6a.zip |
Made UI focusable again (#11129)
Change-Id: I309f00bab9b6779f2667734f2c9623a61d00776f
Diffstat (limited to 'server/src/com')
-rw-r--r-- | server/src/com/vaadin/ui/UI.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/src/com/vaadin/ui/UI.java b/server/src/com/vaadin/ui/UI.java index 7e54aa01a0..dc91a2017f 100644 --- a/server/src/com/vaadin/ui/UI.java +++ b/server/src/com/vaadin/ui/UI.java @@ -23,6 +23,7 @@ import java.util.Iterator; import java.util.LinkedHashSet; import java.util.Map; +import com.vaadin.client.Focusable; import com.vaadin.event.Action; import com.vaadin.event.Action.Handler; import com.vaadin.event.ActionManager; @@ -77,7 +78,7 @@ import com.vaadin.util.CurrentInstance; * @since 7.0 */ public abstract class UI extends AbstractSingleComponentContainer implements - Action.Container, Action.Notifier, LegacyComponent { + Action.Container, Action.Notifier, LegacyComponent, Focusable { /** * The application to which this UI belongs |