Is it possible to know which methods are covered with a pointcut in AspectJ?
The background for this question is that I have a pointcut which covers every method (except for its own):
pointcut traceMethods() : (execution(* *(..))&& !cflow(within(MethodTrace)));
I would like be able to created a list of method-signatures for every method covered by the pointcut once the application has started. Is that possible?