Hello
I have a problem with an annotation based pointcut that should match
annotated methods. Here's the aspect code:
privileged aspect JetmMeasurement {
pointcut jetmMeasure(): call(@Jetm * *(..));
Object around(): jetmMeasure() {
[...]
}
Unfortunately the pointcut doesn't work with annotated methods in inner
classes. I tried some other matching pattern like call(@Jetm * *..*(..))
but this didn't help.
I'd appreciate any hints.
Christian
_______________________________________________
aspectj-users mailing list
[email protected]
https://dev.eclipse.org/mailman/listinfo/aspectj-users