隐藏节点的问题

发布于 2024-12-27 05:52:42 字数 788 浏览 1 评论 0原文

我正在制作决策树,我想用 Tree 来绘制它。我的想法是让它像模拟一样。当用户单击“下一步”时,它将向他显示下一个节点,依此类推。所以基本上,我需要以交互方式取消隐藏节点(默认情况下它们将被隐藏)。

private Forest<TreeNode, TreeLink> g;
g = new SparseTree<TreeNode, TreeLink()>;

然后,我添加了顶点 - 根和边:

g.addVertex(root);
TreeLink v = new TreeLink(50, 75);
g.addEdge(v, node.parent, node, EdgeType.DIRECTED);

我制作了 TreeNodePredicate 和 TreeLinkPredicate ,并插入了用于隐藏/取消隐藏节点/链接的逻辑。如果我说

 v.setVisible(false);

一切都会正常工作,并且边缘/边缘将被隐藏。但如果我说

node.setVisible(false);

注意到发生了。我的树将显示为所有节点均未隐藏 - 边缘将被隐藏。 我猜这不是隐藏节点的正确方法。我知道一些 JUNG 类有 addChild() 方法(这里没有 addChild() ) - 也许,关键是使用该方法,或者与 addChild() 不同的方法代码>稀疏树?

I'm making Decision Tree, and I want to draw it using Tree. My idea is to make it like simulation. When user clicks Next, it will show him next node, and so on. So basically, I need to unhide nodes interactively (they will be hidden by default).

private Forest<TreeNode, TreeLink> g;
g = new SparseTree<TreeNode, TreeLink()>;

Than, I'm adding Vertex - root and Edges:

g.addVertex(root);
TreeLink v = new TreeLink(50, 75);
g.addEdge(v, node.parent, node, EdgeType.DIRECTED);

I made TreeNodePredicate and TreeLinkPredicate, and inserted logic for hiding/unhiding Nodes/Links. If I say

 v.setVisible(false);

everything will work fine, and edge/edges will be hidden. But if I say

node.setVisible(false);

Noting happens. My tree will be displayed with all nodes unhidden - Edges will be hidden.
I'm guessing that this is not the right way to hide Nodes. I know that some JUNG classes have addChild() method (there is no addChild() here) - maybe, the key is to use that method, or something different from SparseTree?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文