componentTree = new JTree(root);
componentTree.setShowsRootHandles(true);
componentTree.setRootVisible(false);
componentTree.setVisibleRowCount(3);
componentTree.setCellRenderer(new TreeNodeRenderer());
componentTree.addMouseListener( this );
componentTree.addKeyListener( this );
componentTree.getSelectionModel().setSelectionMode(TreeSelectionModel.SINGLE_TREE_SELECTION);
componentTree.addTreeSelectionListener(this);
// if ( data.useRtl() ) { componentTree.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT); }