Returns true if the item identified by the path is currently selected. @param path a TreePath identifying a node @return true if the node is selected
(TreePath path)
| 1924 | * @return true if the node is selected |
| 1925 | */ |
| 1926 | public boolean isPathSelected(TreePath path) { |
| 1927 | return getSelectionModel().isPathSelected(path); |
| 1928 | } |
| 1929 | |
| 1930 | /** |
| 1931 | * Returns true if the node identified by row is selected. |
no test coverage detected