在 Groovy SwingBuilder 中,如何将闭包附加到选择单元格时触发的 JTable?

发布于 2024-08-08 04:09:49 字数 97 浏览 2 评论 0原文

我有一个通过 Groovy 的 SwingBuilder 构建的 JTable。我想在选择单元格时触发的表格上附加一个闭包,但我似乎找不到正确的挂钩。

我该怎么做?

I have a JTable being constructed via Groovy's SwingBuilder. I'd like to attach a closure to the table that fires when a cell is selected, but I can't seem to find the right hook.

How do I do that?

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

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

发布评论

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

评论(1

仅此而已 2024-08-15 04:09:49

我不是 groovy 方面的专家,但是当在 swingbuilder 的表元素内时,您可以使用 实现接口的绝妙方式。这是可行的,因为 ListSelectionListener 只有一种方法。

table(id: 'myTable') {
    myTable.selectionModel.addListSelectionListener({evt->
            println("selection changed")
        } as ListSelectionListener)
    }

I'm not an expert in groovy, but when inside the table element of the swingbuilder, you could use the Groovy way to implement interfaces. This works because ListSelectionListener only has one method.

table(id: 'myTable') {
    myTable.selectionModel.addListSelectionListener({evt->
            println("selection changed")
        } as ListSelectionListener)
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文