I am currently using aspectJ @Around in order to inspect my code. I am using aspectJ compiler in order to weave the aspects. BUT, in runtime, I am analyzing also the structure of classes using reflection type.getDeclaredMethods()
. BUt i need to distinguish, which methods were originally present and which were added by the aspectJ compiler. Is it possible? Or is there some workaround?
Thanks in advance.