posted 10 years ago
Sorry, do you mean calling a method belonging to the anonymous inner class, or calling another method from within an anonymous inner class?
Anyway, in both cases you just call it like any other method, as long as you have a reference to the object that you want to call the method on. For instance, within your Bar.foo() method you can just call:
It doesn't matter whether the Foo passed in was created as an anonynous inner class or a conventional class - either way you can still call the methods of the Foo interface on it.
If that doesn't answer the question, can you be a bit more specific about what you mean?