Selects the node identified by the specified path and initiates editing. The edit-attempt fails if the CellEditor does not allow editing for the specified item. @param path the TreePath identifying a node
(TreePath path)
| 2399 | * @param path the <code>TreePath</code> identifying a node |
| 2400 | */ |
| 2401 | public void startEditingAtPath(TreePath path) { |
| 2402 | TreeUI tree = getUI(); |
| 2403 | |
| 2404 | if(tree != null) |
| 2405 | tree.startEditingAtPath(this, path); |
| 2406 | } |
| 2407 | |
| 2408 | /** |
| 2409 | * Returns the path to the element that is currently being edited. |