diff options
author | Henri Sara <henri.sara@itmill.com> | 2009-11-04 08:11:59 +0000 |
---|---|---|
committer | Henri Sara <henri.sara@itmill.com> | 2009-11-04 08:11:59 +0000 |
commit | 0745d1e6426f904299ab3e536508bfffc0135692 (patch) | |
tree | efd07dd28112cb4ba36fcb3404bce4c50127bc1d /src | |
parent | 94036207dbd7441254bc3ff9bc9a203a33ad819c (diff) | |
download | vaadin-framework-0745d1e6426f904299ab3e536508bfffc0135692.tar.gz vaadin-framework-0745d1e6426f904299ab3e536508bfffc0135692.zip |
Merged VPopupView.CustomPopup visibility change and comment from 6.1
svn changeset:9612/svn branch:6.2
Diffstat (limited to 'src')
-rw-r--r-- | src/com/vaadin/terminal/gwt/client/ui/VPopupView.java | 10 |
1 files 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<Widget> { /** * 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<Widget> { } }-*/; - 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; |