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.
_______________________________________________
aspectj-users mailing list
[email protected]
https://dev.eclipse.org/mailman/listinfo/aspectj-users

Reply via email to