Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] Is it possible to define a scope of methods accepting at least one non primitive argument?

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: Re: Is it possible to define a scope of methods accepting at least one non primitive argument?
Sent from the AspectJ - users mailing list archive at Nabble.com.

Back to the top