Returns true if the value identified by path is currently collapsed, this will return false if any of the values in path are currently not being displayed. @param path the TreePath to check @return true if any of the nodes in the node's path are collapsed, false if all n
(TreePath path)
| 2050 | * false if all nodes in the path are expanded |
| 2051 | */ |
| 2052 | public boolean isCollapsed(TreePath path) { |
| 2053 | return !isExpanded(path); |
| 2054 | } |
| 2055 | |
| 2056 | /** |
| 2057 | * Returns true if the node at the specified display row is collapsed. |
no test coverage detected