You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Precedence.java 205B

12345678910
  1. package ma2;
  2. import org.aspectj.lang.annotation.Aspect;
  3. import org.aspectj.lang.annotation.DeclarePrecedence;
  4. @Aspect
  5. @DeclarePrecedence("ma2.aspect1.Aspect1, ma2.aspect3.Aspect3")
  6. class Precedence {
  7. }