Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] Precedence in @AspectJ?

Does annotation based @AspectJ support precedence?  

If I have

@Aspect
public class LowerPriorityAspect {

..
}

@Aspect
public class HigherPriorityAspect {

..
}


Then

public class SomeAdvisedClass {

public void someMethodAdvisedByBothAspects() {
}

}

So, how would I perform the equivalent of:


declare precedence : HigherPriorityAspect, LowerPriorityAspect

using the @AspectJ syntax?


In general, I'm stuck with @AspectJ at this point due to my tool chain.


Back to the top