Ensures that the node in the specified row is collapsed. If row is < 0 or >= getRowCount this will have no effect. @param row an integer specifying a display row, where 0 is the first row in the display
(int row)
| 2254 | * first row in the display |
| 2255 | */ |
| 2256 | public void collapseRow(int row) { |
| 2257 | collapsePath(getPathForRow(row)); |
| 2258 | } |
| 2259 | |
| 2260 | /** |
| 2261 | * Returns the path for the node at the specified location. |
nothing calls this directly
no test coverage detected