Returns the paths of all selected values. @return an array of TreePath objects indicating the selected nodes, or null if nothing is currently selected
()
| 1853 | * nodes, or <code>null</code> if nothing is currently selected |
| 1854 | */ |
| 1855 | public TreePath[] getSelectionPaths() { |
| 1856 | TreePath[] selectionPaths = getSelectionModel().getSelectionPaths(); |
| 1857 | |
| 1858 | return (selectionPaths != null && selectionPaths.length > 0) ? selectionPaths : null; |
| 1859 | } |
| 1860 | |
| 1861 | /** |
| 1862 | * Returns all of the currently selected rows. This method is simply |
no test coverage detected