浏览代码

javadocs

svn changeset:12425/svn branch:6.3
tags/6.7.0.beta1
Matti Tahvonen 14 年前
父节点
当前提交
99c8a9bd48
共有 1 个文件被更改,包括 7 次插入0 次删除
  1. 7
    0
      src/com/vaadin/terminal/gwt/client/UIDL.java

+ 7
- 0
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<Object> childIterator = getChildIterator();
while (childIterator.hasNext()) {

正在加载...
取消
保存