在 Groovy SwingBuilder 中,如何将闭包附加到选择单元格时触发的 JTable?
我有一个通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不是 groovy 方面的专家,但是当在 swingbuilder 的表元素内时,您可以使用 实现接口的绝妙方式。这是可行的,因为 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.