]> source.dussan.org Git - vaadin-framework.git/commitdiff
javadocs
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Fri, 9 Apr 2010 09:54:32 +0000 (09:54 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Fri, 9 Apr 2010 09:54:32 +0000 (09:54 +0000)
svn changeset:12425/svn branch:6.3

src/com/vaadin/terminal/gwt/client/UIDL.java

index 20302cff4d3359993ac3400560217c94e0fb6f3b..6fb4a629b80b9d985a009954b6a5d12f720ddde9 100644 (file)
@@ -533,6 +533,13 @@ public final class UIDL extends JavaScriptObject {
         return connection.getPaintable(getStringVariable(name));
     }
 
+    /**
+     * Returns the child UIDL by its name. If several child nodes exist with the
+     * given name, the first child UIDL will be returned.
+     * 
+     * @param tagName
+     * @return the child UIDL or null if child wit given name was not found
+     */
     public UIDL getChildByTagName(String tagName) {
         Iterator<Object> childIterator = getChildIterator();
         while (childIterator.hasNext()) {