vote up 1 vote down star
1

There is an idiom in groovy to implement an Interface with a single closure. The closure must be prepared to handle whatever arguments are passed. That works fine. But how does one determine what method was called at the interface?

interface X
{ void f(); void g(int n); void h(String s, int n); }

x = {Object[] args -> println "method called with $args"} as X
x.f()

The args are available but that name of the method that was called is - apparently - not. Am I missing something?

flag

2 Answers

vote up 0 vote down

That feature is intended to be used for the common case of single-method interfaces like Comparable or Runnable (which are in Java often used as a substitute for closures).

link|flag
vote up 0 vote down

You can use the dynamic MethodMissing Feature like shown in this Excample http://groovy.codehaus.org/Using+methodMissing+and+propertyMissing

With this you can implement a fallback method which can handle the calls to the interface methodes.

link|flag

Your Answer

Get an OpenID
or

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