Returns the path for the specified row. If row is not visible, or a TreeUI has not been set, null is returned. @param row an integer specifying a row @return the TreePath to the specified node, null if row < 0
(int row)
| 2179 | * or <code>row >= getRowCount()</code> |
| 2180 | */ |
| 2181 | public TreePath getPathForRow(int row) { |
| 2182 | TreeUI tree = getUI(); |
| 2183 | |
| 2184 | if(tree != null) |
| 2185 | return tree.getPathForRow(this, row); |
| 2186 | return null; |
| 2187 | } |
| 2188 | |
| 2189 | /** |
| 2190 | * Returns the row that displays the node identified by the specified |
no test coverage detected