109110111112113114115116117118119
root2.addItem(new CheckBox("child item3")); // nest the trees root.addItem(root2); t.addItem(root); t.addFocusListener(new FocusListener() { public void onFocus(Widget sender) { report("on focus tree"); }
108109110111112113114115116117118