如何在 Java 中向已实例化的 JList 添加对象?

发布于 2024-08-18 14:53:30 字数 129 浏览 4 评论 0原文

我想将对象添加到已由 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 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

顾铮苏瑾 2024-08-25 14:53:30

根据我对 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) or JList(Vector) constructors you can potentially amend the consents of your model through a call to getModel(), or in the case of Vector, simply maintain a reference to the Vector 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.

时光无声 2024-08-25 14:53:30

修改生成的列表模型。您可以通过以下方式获取它:

请参阅 JList #getModel()

Modify the generated list model. You can get it via:

See JList#getModel()

べ映画 2024-08-25 14:53:30

可以将您自己的模型设置为已实例化的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文