将 Groovy beans 事件处理扩展到 IEventNameListener 接口
根据此邮件列表线程,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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对 bean 的事件处理支持是根据 bean 规范实现的,没有扩展点供您使用。您将不得不采取稍微更长的方法,例如:
使用 {...} 作为您想要处理事件的闭包。
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:
with {...} being your Closure you want to handle the event with.