Ends the current editing session. (The DefaultTreeCellEditor object saves any edits that are currently in progress on a cell. Other implementations may operate differently.) Has no effect if the tree isn't being edited. Note: To make edit-saves automatic whenever
()
| 2372 | * false if editing was not in progress |
| 2373 | */ |
| 2374 | public boolean stopEditing() { |
| 2375 | TreeUI tree = getUI(); |
| 2376 | |
| 2377 | if(tree != null) |
| 2378 | return tree.stopEditing(this); |
| 2379 | return false; |
| 2380 | } |
| 2381 | |
| 2382 | /** |
| 2383 | * Cancels the current editing session. Has no effect if the |