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());
// Add an item with basic elements inside of it
{
final TextBox textBox = new TextBox();
Hyperlink link = new Hyperlink("change focus", "blah");