diff options
author | Artur Signell <artur.signell@itmill.com> | 2011-12-07 23:17:17 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2011-12-07 23:17:17 +0000 |
commit | 25b14078dd7c3a37d18bec46aa5ab032996e54fd (patch) | |
tree | 38b5e0e026431bba5acfce95588c3c9fd55d3cf0 /src/com/vaadin | |
parent | 48644a3c912ac2c46472812c1f4db65571767949 (diff) | |
download | vaadin-framework-25b14078dd7c3a37d18bec46aa5ab032996e54fd.tar.gz vaadin-framework-25b14078dd7c3a37d18bec46aa5ab032996e54fd.zip |
#6862 Update Application.getWindow Javadoc
svn changeset:22305/svn branch:6.7
Diffstat (limited to 'src/com/vaadin')
-rw-r--r-- | src/com/vaadin/Application.java | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/com/vaadin/Application.java b/src/com/vaadin/Application.java index 39a70fe27f..cd1da8f9fd 100644 --- a/src/com/vaadin/Application.java +++ b/src/com/vaadin/Application.java @@ -209,11 +209,11 @@ public abstract class Application implements URIHandler, * * <p> * If for some reason user opens another window with same url that is - * already open, name is modified by adding "_12345678" postfix to the name, - * where 12345678 is a random number. One can decide to create another - * window-object for those windows (recommended) or to discard the postfix. - * If the user has two browser windows pointing to the same window-object on - * server, synchronization errors are likely to occur. + * already open, the name is modified by adding a "_N" postfix to the name, + * where N is a running number starting from 1. One can decide to create + * another window-object for those windows (recommended) or to discard the + * postfix. If the user has two browser windows pointing to the same + * window-object on server, synchronization errors are likely to occur. * </p> * * <p> @@ -1384,7 +1384,7 @@ public abstract class Application implements URIHandler, } /** - * @return + * @return * "Take note of any unsaved data, and <u>click here</u> to continue." */ public String getSessionExpiredMessage() { @@ -1416,7 +1416,7 @@ public abstract class Application implements URIHandler, } /** - * @return + * @return * "Take note of any unsaved data, and <u>click here</u> to continue." */ public String getCommunicationErrorMessage() { @@ -1448,7 +1448,7 @@ public abstract class Application implements URIHandler, } /** - * @return + * @return * "Take note of any unsaved data, and <u>click here</u> to continue." */ public String getAuthenticationErrorMessage() { |