将 Groovy beans 事件处理扩展到 IEventNameListener 接口

发布于 2024-12-08 04:53:24 字数 253 浏览 0 评论 0原文

根据此邮件列表线程,Groovy 的事件处理支持不适用于那些称为 IEventNameListener 而不是 EventNameListener 的 Eclipse 事件侦听器接口。有什么办法可以延长它吗?

According to this mailing list thread, Groovy's event handling support doesn't work for those Eclipse event listener interfaces which are called IEventNameListener instead of EventNameListener. Is there some way to extend it?

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

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

发布评论

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

评论(1

蓝海似她心 2024-12-15 04:53:24

对 bean 的事件处理支持是根据 bean 规范实现的,没有扩展点供您使用。您将不得不采取稍微更长的方法,例如:

hl.addEventNameListener({...} as IEventNameListener)

使用 {...} 作为您想要处理事件的闭包。

The event handling support for beans is implemented according to the bean specification and doesn't have extension points for you to use. You will have to go the slightly longer way and do for example:

hl.addEventNameListener({...} as IEventNameListener)

with {...} being your Closure you want to handle the event with.

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