From 25b14078dd7c3a37d18bec46aa5ab032996e54fd Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Wed, 7 Dec 2011 23:17:17 +0000 Subject: [PATCH] #6862 Update Application.getWindow Javadoc svn changeset:22305/svn branch:6.7 --- src/com/vaadin/Application.java | 16 ++++++++-------- 1 file 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, * *

* 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. *

* *

@@ -1384,7 +1384,7 @@ public abstract class Application implements URIHandler, } /** - * @return + * @return * "Take note of any unsaved data, and click here to continue." */ public String getSessionExpiredMessage() { @@ -1416,7 +1416,7 @@ public abstract class Application implements URIHandler, } /** - * @return + * @return * "Take note of any unsaved data, and click here to continue." */ public String getCommunicationErrorMessage() { @@ -1448,7 +1448,7 @@ public abstract class Application implements URIHandler, } /** - * @return + * @return * "Take note of any unsaved data, and click here to continue." */ public String getAuthenticationErrorMessage() { -- 2.39.5