Adds each path in the array of paths to the current selection. If any component of any of the paths isn't viewable and getExpandsSelectedPaths is true, it is made viewable. Note that JTree does not allow duplicate nodes to exist as children under the same parent -- each
(TreePath[] paths)
| 1767 | * the nodes to add |
| 1768 | */ |
| 1769 | public void addSelectionPaths(TreePath[] paths) { |
| 1770 | getSelectionModel().addSelectionPaths(paths); |
| 1771 | } |
| 1772 | |
| 1773 | /** |
| 1774 | * Adds the path at the specified row to the current selection. |
no test coverage detected