如何在 Java 中向已实例化的 JList 添加对象?
我想将对象添加到已由 Netbeans 生成的代码实例化的 JList 中。
我无法在 JList 构造函数中传递我自己的列表模型,因为我无法修改 Netbeans 生成的代码。
如何将对象添加到该 JList.
I want to add objects to a JList which has already been instantiated by the Netbeans genrated code.
I can't pass my own list model in the JList constructor as I can't modify the Netbeans generated code.
How can I add object to that JList.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
根据我对 nfechner 的评论,这实际上取决于您如何构建 JList。如果您使用了
JList(ListModel)
或JList(Vector)
构造函数,您可以通过调用getModel()< 来修改模型的同意/code>,或者在
Vector
的情况下,只需维护对Vector
的引用并对其进行修改(前提是您随后触发事件以通知任何模型侦听器)。不过,我相当确定 Netbeans IDE 中存在“钩子”,允许您指定特定的模型实现,这将导致自动生成代码以包含该模型。
As per my comment to nfechner, it really depends on how you've constructed your JList. If you've used the
JList(ListModel)
orJList(Vector)
constructors you can potentially amend the consents of your model through a call togetModel()
, or in the case ofVector
, simply maintain a reference to theVector
and amend that (providing you fire an event aftewards to notify any model listeners).However, I'm fairly sure there are "hooks" in the Netbeans IDE to allow you to specify a specific model implementation, which will then cause the code to be auto-generated to include this.
修改生成的列表模型。您可以通过以下方式获取它:
请参阅 JList #getModel()
Modify the generated list model. You can get it via:
See JList#getModel()
可以将您自己的模型设置为已实例化的 JList,请参阅 JList#setModel(ListModel)
您可以传递从 DefaultListModel 扩展的模型,它支持添加和删除方法。
It's possible to set your own model to the already instantiated JList, see JList#setModel(ListModel)
You can pass the model extended from DefaultListModel, which supports add and remove methods.