diff options
Diffstat (limited to 'client')
-rw-r--r-- | client/src/com/vaadin/client/ApplicationConfiguration.java | 9 | ||||
-rw-r--r-- | client/src/com/vaadin/client/ui/VUI.java | 2 |
2 files changed, 6 insertions, 5 deletions
diff --git a/client/src/com/vaadin/client/ApplicationConfiguration.java b/client/src/com/vaadin/client/ApplicationConfiguration.java index 1f35c408ae..22de396fab 100644 --- a/client/src/com/vaadin/client/ApplicationConfiguration.java +++ b/client/src/com/vaadin/client/ApplicationConfiguration.java @@ -285,11 +285,12 @@ public class ApplicationConfiguration implements EntryPoint { } /** - * Gets the root if of this application instance. The root id should be - * included in every request originating from this instance in order to - * associate it with the right UI instance on the server. + * Gets the UI id of the server-side UI associated with this client-side + * instance. The UI id should be included in every request originating from + * this instance in order to associate the request with the right UI + * instance on the server. * - * @return the root id + * @return the UI id */ public int getUIId() { return uiId; diff --git a/client/src/com/vaadin/client/ui/VUI.java b/client/src/com/vaadin/client/ui/VUI.java index a4d1df9423..577af47aae 100644 --- a/client/src/com/vaadin/client/ui/VUI.java +++ b/client/src/com/vaadin/client/ui/VUI.java @@ -456,7 +456,7 @@ public class VUI extends SimplePanel implements ResizeHandler, } /** - * Ensures the root is scrollable eg. after style name changes. + * Ensures the widget is scrollable eg. after style name changes. * <p> * For internal use only. May be removed or replaced in the future. */ |