I would like to implement a Groovy interface that takes parameters and returns a result in java and make it available in GroovyShell. However Callable, GroovyCallacble do not take any parameters so they are wrong for my purposes.

Any tips would be appreciated.

link|improve this question

44% accept rate
feedback

1 Answer

It is possible to create a "Closure" sub class in java and bind it to the Bindings accompanying a GroovyShell. Once this is done it is possible to execute the Closure from groovy at the bound name.

link|improve this answer
Is this part of the same question? Or are you answering your own question? If it's part of the same, maybe editing your original Q rather than posting an answer would be more sensible? – tim_yates Jun 29 '11 at 8:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.