public SimpleTree() {
setModel(new DefaultTreeModel(new PatchedDefaultMutableTreeNode()));
TreeUtil.installActions(this);
final UIHelper helper = PeerFactory.getInstance().getUIHelper();
helper.installTreeSpeedSearch(this);
helper.installToolTipHandler(this);
addMouseListener(myMouseListener);
setCellRenderer(new SimpleNodeRenderer());
setEditable(false);