diff options
author | Sauli Tähkäpää <sauli@vaadin.com> | 2014-10-16 16:01:26 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-10-22 08:59:18 +0000 |
commit | 447efa1f603997cdfaca99d6bad88b7593fc58fd (patch) | |
tree | 4be393c2a5c1f98f85024605e55320d64968bb35 | |
parent | e61fd1e8f86af930439729f48f0d700cba063529 (diff) | |
download | vaadin-framework-447efa1f603997cdfaca99d6bad88b7593fc58fd.tar.gz vaadin-framework-447efa1f603997cdfaca99d6bad88b7593fc58fd.zip |
Add @since to isEnabled() and setEnabled(). (#14797)
Change-Id: Ic9b7e8f597afd68c4190b7eaffaee203876e24e0
-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) { |