use of org.eclipse.nebula.widgets.nattable.columnCategories.Tree in project nebula.widgets.nattable by eclipse.
the class TreeTest method setup.
@Before
public void setup() {
this.tree = new Tree();
Node root = newNode("R");
this.tree.setRootElement(root);
root.addChild(newNode("a"));
Node b = newNode("b");
root.addChild(b);
b.addChild(newNode("b1"));
b.addChild(newNode("b2"));
Node b3 = newNode("b3");
b.addChild(b3);
b3.addChild(newNode("b3a"));
b3.addChild(newNode("b3b"));
root.addChild(newNode("c"));
}