如何克隆java TreeModel?
我想要 2 个 TreeModel:第二个 TreeModel 的根是第一个 TreeModel 的节点(因此,第二个 TreeModel 是第一个 TreeModel
的子树)。
我认为我可以通过克隆这个 TreeModel 并更改根来轻松地做到这一点。但是,我不知道是否有一种简单的方法来克隆TreeModel
。
I want to have 2 TreeModels
: the root of the second TreeModel
is a node of the first TreeModel
(therefore, the second TreeModel
is a subtree of the first TreeModel
).
I think that I can easily do this by cloning the this TreeModel
and changing the root. However, I don't know if there is an easy way of cloning TreeModel
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
TreeModel
接口的默认实现是DefaultTreeModel
,您可以在此处轻松使用它来实例化子树模型:The default implementation of the interface
TreeModel
isDefaultTreeModel
, which you can easily use here to instantiate a subtree model: