diff options
author | Sauli Tähkäpää <sauli@vaadin.com> | 2014-10-16 16:01:26 +0300 |
---|---|---|
committer | Sauli Tähkäpää <sauli@vaadin.com> | 2014-10-16 16:01:36 +0300 |
commit | 21d6298a8835e48ba47e941b5de6671bf829935c (patch) | |
tree | f9fd4d2cf539db534b51d469c507221bae21fec7 /client | |
parent | 8ecf9ecc332f396e5356b2d98dcfbd9b93cac3fd (diff) | |
download | vaadin-framework-21d6298a8835e48ba47e941b5de6671bf829935c.tar.gz vaadin-framework-21d6298a8835e48ba47e941b5de6671bf829935c.zip |
Add @since to isEnabled() and setEnabled(). (#14797)
Change-Id: Ic9b7e8f597afd68c4190b7eaffaee203876e24e0
Diffstat (limited to 'client')
-rw-r--r-- | client/src/com/vaadin/client/ui/VPopupView.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/client/src/com/vaadin/client/ui/VPopupView.java b/client/src/com/vaadin/client/ui/VPopupView.java index 7d98110446..bb2bbfe05d 100644 --- a/client/src/com/vaadin/client/ui/VPopupView.java +++ b/client/src/com/vaadin/client/ui/VPopupView.java @@ -195,6 +195,8 @@ public class VPopupView extends HTML implements HasEnabled, Iterable<Widget>, /** * Returns true if the popup is enabled, false if not. + * + * @since 7.3.4 */ @Override public boolean isEnabled() { @@ -206,6 +208,7 @@ public class VPopupView extends HTML implements HasEnabled, Iterable<Widget>, * * @param enabled <code>true</code> to enable the popup, <code>false</code> * to disable it + * @since 7.3.4 */ @Override public void setEnabled(boolean enabled) { |