]> source.dussan.org Git - vaadin-framework.git/commitdiff
comments
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Mon, 6 Aug 2007 12:54:41 +0000 (12:54 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Mon, 6 Aug 2007 12:54:41 +0000 (12:54 +0000)
svn changeset:1957/svn branch:trunk

src/com/itmill/toolkit/terminal/gwt/client/Layout.java

index 41e4a783765ec9f442a69bef734e57ecca39cf41..cc91fb7c4f45145be3a55a5eb307ce2940232011 100644 (file)
@@ -9,7 +9,8 @@ public interface Layout extends Paintable {
         * 
         * Each layout must be able to switch children. To to this, one must just
         * give references to a current and new child. Note that the Layout is not
-        * responsible for registering paintable into client.
+        * responsible for registering paintable into ApplicationConnection, but it is responsible
+        * is for unregistering it.
         * 
         * @param oldComponent
         *            Child to be replaced
@@ -38,9 +39,10 @@ public interface Layout extends Paintable {
         * </p>
         * 
         * @param component
-        *            Child component that requests the service.
+        *            Child component for which service is requested.
         * @param uidl
         *            UIDL of the child component.
         */
        void updateCaption(Widget component, UIDL uidl);
+       
 }