Re: [aspectj-users] Problem converting to annotation style

2010-02-11 Thread Ramnivas Laddad
In annotation-style, pointcut expressions must use fully-qualified type names. So you will need to change your pointcut to something like: @Pointcut("execution(* packageof.A.*(..)) || execution(* packageof.C.*(..))") Also, can you switch to the latest version AspectJ? A lot of bugs have been fixe

[aspectj-users] Problem converting to annotation style

2010-02-10 Thread Mick Jordan
I am resurrecting an aspect that I developed a while ago in the non-annotation style and trying to convert it to annotation style. I've read the documents and made what seemed to be the appropriate changes, but the effect is that, while ajc compiles everything happily, no weaving occurs, confir