Returns all of the currently selected rows. This method is simply forwarded to the TreeSelectionModel . If nothing is selected null or an empty array will be returned, based on the TreeSelectionModel implementation. @return an array of integers that identifies
()
| 1869 | * where 0 is the first row in the display |
| 1870 | */ |
| 1871 | public int[] getSelectionRows() { |
| 1872 | return getSelectionModel().getSelectionRows(); |
| 1873 | } |
| 1874 | |
| 1875 | /** |
| 1876 | * Returns the number of nodes selected. |
nothing calls this directly
no test coverage detected