Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] LTW and pointcut not matched with @target and inheritance

Valerio Schiavoni ha scritto:

pointcut callOnAnnotatedInterface() :
call (* (@MemberOfMonitoredSet *)+.*(..))

with this modiciation (without the '+' specifier):

pointcut callOnAnnotatedInterface() :
call (* (@MemberOfMonitoredSet *).*(..))
i don't get compile errors, but the advice is not executed.





Back to the top