]> source.dussan.org Git - vaadin-framework.git/commitdiff
Change a few "root" occurrences to "UI" in error messages, javadoc 50/350/1
authorJohannes Dahlström <johannesd@vaadin.com>
Thu, 22 Nov 2012 14:02:32 +0000 (16:02 +0200)
committerJohannes Dahlström <johannesd@vaadin.com>
Thu, 22 Nov 2012 14:20:17 +0000 (16:20 +0200)
Change-Id: I3140b91262ca179bed48e2081c6093a21fc834a1

client/src/com/vaadin/client/ApplicationConfiguration.java
client/src/com/vaadin/client/ui/VUI.java
server/src/com/vaadin/server/UIProvider.java

index 1f35c408aeaa20b0b931a7c93fc695d712db0753..22de396fab70f5b41101bd8537416f687d3521c4 100644 (file)
@@ -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;
index a4d1df94235d089e745b40f33d3acec63008e223..577af47aae6a21dd74bb3d6451e39be2040b0de6 100644 (file)
@@ -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.
      */
index e9ec25c3267dfd52b82f35a5337e6f32926c97b3..0f5396372b5bca2720fb9968578a0de1d7135b30 100644 (file)
@@ -32,9 +32,9 @@ public abstract class UIProvider implements Serializable {
         try {
             return event.getUIClass().newInstance();
         } catch (InstantiationException e) {
-            throw new RuntimeException("Could not instantiate root class", e);
+            throw new RuntimeException("Could not instantiate UI class", e);
         } catch (IllegalAccessException e) {
-            throw new RuntimeException("Could not access root class", e);
+            throw new RuntimeException("Could not access UI class", e);
         }
     }