From: Matti Tahvonen Date: Fri, 9 Apr 2010 09:54:32 +0000 (+0000) Subject: javadocs X-Git-Tag: 6.7.0.beta1~1759 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=99c8a9bd48a45ce60b616de581b28b8d8b8a2468;p=vaadin-framework.git javadocs svn changeset:12425/svn branch:6.3 --- diff --git a/src/com/vaadin/terminal/gwt/client/UIDL.java b/src/com/vaadin/terminal/gwt/client/UIDL.java index 20302cff4d..6fb4a629b8 100644 --- a/src/com/vaadin/terminal/gwt/client/UIDL.java +++ b/src/com/vaadin/terminal/gwt/client/UIDL.java @@ -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 childIterator = getChildIterator(); while (childIterator.hasNext()) {