mark baum wrote:Hi,
I'm relatively new to AOP/ aspectJ. I was looking in the doc for a possibility, how to capture any return value, in other words all methods not returning null (of any class). I saw ways to capture a method name and parameters, but not how would I capture a non-void method call?
Thanks for help
How about for the return type to be just "*" like
* *(..)
That one will be any return type, of any method, with any parameters.