diff options
author | Artur Signell <artur@vaadin.com> | 2012-11-13 16:21:56 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-11-14 15:25:12 +0200 |
commit | 770a1b8b4f3a6254a5e43d9446381d6e31ee402d (patch) | |
tree | 286ec54da0f014127cf74d0a3e3a93fe65e28c17 /client | |
parent | 2374a69e98201b6c34d4b8ab981a66aba4b61b19 (diff) | |
download | vaadin-framework-770a1b8b4f3a6254a5e43d9446381d6e31ee402d.tar.gz vaadin-framework-770a1b8b4f3a6254a5e43d9446381d6e31ee402d.zip |
Made PopupView work with TB again and fixed test (#10187)
Change-Id: I36b568866a69354caa36609fc7c7d42082bc9489
Diffstat (limited to 'client')
-rw-r--r-- | client/src/com/vaadin/client/ui/VPopupView.java | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/client/src/com/vaadin/client/ui/VPopupView.java b/client/src/com/vaadin/client/ui/VPopupView.java index 4e0a9bcf98..129e233d5e 100644 --- a/client/src/com/vaadin/client/ui/VPopupView.java +++ b/client/src/com/vaadin/client/ui/VPopupView.java @@ -15,6 +15,7 @@ */ package com.vaadin.client.ui; +import java.util.Collections; import java.util.HashSet; import java.util.Iterator; import java.util.Set; @@ -45,7 +46,7 @@ import com.vaadin.client.ui.ShortcutActionHandler.ShortcutActionHandlerOwner; import com.vaadin.client.ui.popupview.VisibilityChangeEvent; import com.vaadin.client.ui.popupview.VisibilityChangeHandler; -public class VPopupView extends HTML { +public class VPopupView extends HTML implements Iterable<Widget> { public static final String CLASSNAME = "v-popupview"; @@ -390,4 +391,8 @@ public class VPopupView extends HTML { VisibilityChangeEvent.getType()); } + public Iterator<Widget> iterator() { + return Collections.singleton((Widget) popup).iterator(); + } + }// class VPopupView |