Selects the node at the specified row in the display. @param row the row to select, where 0 is the first row in the display
(int row)
| 1706 | * the display |
| 1707 | */ |
| 1708 | public void setSelectionRow(int row) { |
| 1709 | int[] rows = { row }; |
| 1710 | |
| 1711 | setSelectionRows(rows); |
| 1712 | } |
| 1713 | |
| 1714 | /** |
| 1715 | * Selects the nodes corresponding to each of the specified rows |
no test coverage detected