aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSauli Tähkäpää <sauli@vaadin.com>2014-11-02 22:22:14 +0200
committerSauli Tähkäpää <sauli@vaadin.com>2014-11-02 22:22:40 +0200
commit4910442a87c35ca3b1240d2818e4155522b04504 (patch)
tree48648629c731f03159b2e770b00a6f9d5f0ce060
parent89bd22d61df728a36e3385ce14b0b5bf4d3bb6f8 (diff)
downloadvaadin-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.java8
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;