Adds the path at the specified row to the current selection. @param row an integer specifying the row of the node to add, where 0 is the first row in the display
(int row)
| 1777 | * where 0 is the first row in the display |
| 1778 | */ |
| 1779 | public void addSelectionRow(int row) { |
| 1780 | int[] rows = { row }; |
| 1781 | |
| 1782 | addSelectionRows(rows); |
| 1783 | } |
| 1784 | |
| 1785 | /** |
| 1786 | * Adds the paths at each of the specified rows to the current selection. |
nothing calls this directly
no test coverage detected