您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789
  1. import org.aspectj.lang.annotation.*;
  2. // Aspect deactivated if A is missing
  3. @RequiredTypes("A")
  4. aspect XA2 {
  5. @SuppressAjWarnings("adviceDidNotMatch")
  6. before(): execution(* A.*(..)) {}
  7. }