
10.9 Trees 10.19
23. int horizontal = ScrollPaneConstants.HORIZONTAL_SCROLL-
BAR_AS_NEEDED;
24. JScrollPane jspObj = new JScrollPane(jp, vertical, hor-
izontal );
25. // Add scroll pane to the content pane
26. contentPane.add(jspObj, BorderLayout.CENTER);
27. }}
10.9 Trees
You would have noticed that the tree structure is extensively used by the explorer to depict the
file organization pictorially. Also, on selection element from the structure, the content of the
element is presented to the user.
A similar facility is provided by the java swing component. One can display the directory
structure by using a tree, and by attaching the action events ...