[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[List Home]
|
[aspectj-users] Problem with annotation based pointcut and inner classes
|
- From: Christian Kölle <christian.koelle@xxxxxxxxx>
- Date: Wed, 27 Aug 2008 10:50:04 +0200
- Delivered-to: aspectj-users@eclipse.org
- User-agent: Mozilla-Thunderbird 2.0.0.16 (X11/20080724)
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