Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个对象层次结构,我想使用 JTree 和 TreeModel 来展示它们。层次结构的每个级别都是不同的类。
我见过的所有 JTree 和 TreeModel 示例在整个树的层次结构中都有一个公共类(即文件系统浏览器的 File)。当您的层次结构逐级更改类时,您如何实现 TreeModel?你把 TreeModel 放在 TreeModel 里面吗?
实现 TreeModel,然后提供您自己的方法实现。JTree 适用于对象,因此您应该可以使用多种类型。