7
我想查找類似isNodeExpanded()的方法來檢查給定的JTree節點是否擴展,但我找不到它。有沒有更好的方法來測試JTree節點是否擴展?
我知道我可以通過使用TreeExpansionListener跟蹤節點擴展來做到這一點。有沒有更好的辦法?
我想查找類似isNodeExpanded()的方法來檢查給定的JTree節點是否擴展,但我找不到它。有沒有更好的方法來測試JTree節點是否擴展?
我知道我可以通過使用TreeExpansionListener跟蹤節點擴展來做到這一點。有沒有更好的辦法?
JTree.java:
/**
* Returns true if the node identified by the path is currently expanded,
*
* @param path the <code>TreePath</code> specifying the node to check
* @return false if any of the nodes in the node's path are collapsed,
* true if all nodes in the path are expanded
*/
public boolean isExpanded(TreePath path);
美麗,JavaDoc的:-)
節點的展開狀態是不在TreeModel
但在JTree
。
謝謝,我忽略了JTree的JavaDoc :-) – waiting 2010-05-19 01:30:09