Browse Source

Add @since to isEnabled() and setEnabled(). (#14797)

Change-Id: Ic9b7e8f597afd68c4190b7eaffaee203876e24e0
tags/7.4.0.beta1
Sauli Tähkäpää 9 years ago
parent
commit
447efa1f60
1 changed files with 3 additions and 0 deletions
  1. 3
    0
      client/src/com/vaadin/client/ui/VPopupView.java

+ 3
- 0
client/src/com/vaadin/client/ui/VPopupView.java View File

@@ -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) {

Loading…
Cancel
Save