diff options
author | Leif Åstrand <leif@vaadin.com> | 2014-04-14 10:51:02 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-04-14 08:34:22 +0000 |
commit | 72d0aa0b82078ec2cda9c2f36a699d3854217db4 (patch) | |
tree | 235dece15e9ab7d2f40da61741d723a0ec413461 /server/src/com/vaadin/ui/Window.java | |
parent | ee203f581aead7b234a4b64db9a6006e2887dc47 (diff) | |
download | vaadin-framework-72d0aa0b82078ec2cda9c2f36a699d3854217db4.tar.gz vaadin-framework-72d0aa0b82078ec2cda9c2f36a699d3854217db4.zip |
Update Window Javadoc based on 7.2 API review changes
Change-Id: Ifdc1379892d8f798f2ceabcf83d772fa6a76dd4b
Diffstat (limited to 'server/src/com/vaadin/ui/Window.java')
-rw-r--r-- | server/src/com/vaadin/ui/Window.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/src/com/vaadin/ui/Window.java b/server/src/com/vaadin/ui/Window.java index aaba601309..7268aed101 100644 --- a/server/src/com/vaadin/ui/Window.java +++ b/server/src/com/vaadin/ui/Window.java @@ -1014,8 +1014,8 @@ public class Window extends Panel implements FocusNotifier, BlurNotifier, * window. Text contained in these components will be read by assistive * devices when it is opened. * - * @param connectors - * with the components to use as description + * @param components + * the components to use as description */ public void setAssistiveDescription(Component... components) { if (components == null) { @@ -1031,7 +1031,7 @@ public class Window extends Panel implements FocusNotifier, BlurNotifier, * contained in these components will be read by assistive devices when the * window is opened. * - * @return list of previously set components + * @return array of previously set components */ public Component[] getAssistiveDescription() { Connector[] contentDescription = getState().contentDescription; |