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?
According to this mailing list thread , Groovy’s event handling support doesn’t work for
Share
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.