From 0745d1e6426f904299ab3e536508bfffc0135692 Mon Sep 17 00:00:00 2001 From: Henri Sara Date: Wed, 4 Nov 2009 08:11:59 +0000 Subject: [PATCH] Merged VPopupView.CustomPopup visibility change and comment from 6.1 svn changeset:9612/svn branch:6.2 --- src/com/vaadin/terminal/gwt/client/ui/VPopupView.java | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/com/vaadin/terminal/gwt/client/ui/VPopupView.java b/src/com/vaadin/terminal/gwt/client/ui/VPopupView.java index 630302eeaf..866ca99a0f 100644 --- a/src/com/vaadin/terminal/gwt/client/ui/VPopupView.java +++ b/src/com/vaadin/terminal/gwt/client/ui/VPopupView.java @@ -153,7 +153,7 @@ public class VPopupView extends HTML implements Container, Iterable { /** * Determines the correct position for a popup and displays the popup at * that position. - * + * * By default, the popup is shown centered relative to its host component, * ensuring it is visible on the screen if possible. * @@ -218,7 +218,13 @@ public class VPopupView extends HTML implements Container, Iterable { } }-*/; - private class CustomPopup extends VOverlay { + /** + * This class is only protected to enable overriding showPopup, and is + * currently not intended to be extended or otherwise used directly. Its API + * (other than it being a VOverlay) is to be considered private and + * potentially subject to change. + */ + protected class CustomPopup extends VOverlay { private Paintable popupComponentPaintable = null; private Widget popupComponentWidget = null; -- 2.39.5