Returns the Rectangle that the node at the specified row is drawn in. @param row the row to be drawn, where 0 is the first row in the display @return the Rectangle the node is drawn in
(int row)
| 2128 | * @return the <code>Rectangle</code> the node is drawn in |
| 2129 | */ |
| 2130 | public Rectangle getRowBounds(int row) { |
| 2131 | return getPathBounds(getPathForRow(row)); |
| 2132 | } |
| 2133 | |
| 2134 | /** |
| 2135 | * Makes sure all the path components in path are expanded (except |
no test coverage detected