diff options
author | Sauli Tähkäpää <sauli@vaadin.com> | 2014-11-02 22:22:14 +0200 |
---|---|---|
committer | Sauli Tähkäpää <sauli@vaadin.com> | 2014-11-02 22:22:40 +0200 |
commit | 4910442a87c35ca3b1240d2818e4155522b04504 (patch) | |
tree | 48648629c731f03159b2e770b00a6f9d5f0ce060 | |
parent | 89bd22d61df728a36e3385ce14b0b5bf4d3bb6f8 (diff) | |
download | vaadin-framework-4910442a87c35ca3b1240d2818e4155522b04504.tar.gz vaadin-framework-4910442a87c35ca3b1240d2818e4155522b04504.zip |
Add @since to VPopupView.
Change-Id: I1b5544603ab2aa13bc1a51e04ff134fd48113c59
-rw-r--r-- | client/src/com/vaadin/client/ui/VPopupView.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/client/src/com/vaadin/client/ui/VPopupView.java b/client/src/com/vaadin/client/ui/VPopupView.java index bb2bbfe05d..5b37a90915 100644 --- a/client/src/com/vaadin/client/ui/VPopupView.java +++ b/client/src/com/vaadin/client/ui/VPopupView.java @@ -442,6 +442,14 @@ public class VPopupView extends HTML implements HasEnabled, Iterable<Widget>, return Collections.singleton((Widget) popup).iterator(); } + /** + * Checks whether there are operations pending for this widget that must be + * executed before reaching a steady state. + * + * @returns <code>true</code> iff there are operations pending which must be + * executed before reaching a steady state + * @since 7.3.4 + */ @Override public boolean isWorkPending() { return popupShowInProgress; |