I have one more question. I have three aspects affecting the same method:
 - NotNullAspect
 - LoggerAspect
 - AuthorizeAspect

How can I affect the order in which they are applied? I would like them to
be applied in the following order:
 - LoggerAspect
 - NotNullAspect
 - AuthorizeAspect

I tried to add to the NotNullAspect the following line:
=====================
  declare precedence : NotNullAspect, LoggerAspect;
=====================
OR
=====================
  declare precedence : LoggerAspect, NotNullAspect;
=====================

To no avail. How am I to do it?

Thanks.

--
View this message in context: 
http://aspectj.2085585.n4.nabble.com/Is-it-possible-to-define-a-scope-of-methods-accepting-at-least-one-non-primitive-argument-tp4195341p4210295.html
Sent from the AspectJ - users mailing list archive at Nabble.com.
_______________________________________________
aspectj-users mailing list
[email protected]
https://dev.eclipse.org/mailman/listinfo/aspectj-users

Reply via email to