FastTree t = new FastTree();
FastTreeItem a = t.addItem("A root tree item");
a.addItem("A child with different style");
a.addItem("regular style");
FastTreeItem aXb = a.addItem("Another child");
aXb.addItem("a grand child");
FastTreeItem widgetBranch = a.addItem(new CheckBox("A checkbox child"));
FastTreeItem textBoxParent = widgetBranch.addItem("A TextBox parent");
textBoxParent.addItem(new TextBox());
textBoxParent.addItem("and another one...");
textBoxParent.addItem(new TextArea());