Returns true if the node identified by row is selected. @param row an integer specifying a display row, where 0 is the first row in the display @return true if the node is selected
(int row)
| 1935 | * @return true if the node is selected |
| 1936 | */ |
| 1937 | public boolean isRowSelected(int row) { |
| 1938 | return getSelectionModel().isRowSelected(row); |
| 1939 | } |
| 1940 | |
| 1941 | /** |
| 1942 | * Returns an <code>Enumeration</code> of the descendants of the |
no test coverage detected