List of usage examples for com.google.gwt.gen2.complexpanel.client FastTreeItem FastTreeItem
public FastTreeItem(Widget widget)
Widget. From source file:com.google.gwt.gen2.demo.fasttree.client.FastTreeDemo.java
License:Apache License
private void lazyCreateChild(final HasFastTreeItems parent, final int index, final int children) { final FastTreeItem item = new FastTreeItem("child" + index + " (" + children + " children)"); item.becomeInteriorNode();//from w w w.j a v a 2 s.c o m parent.addItem(item); }