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.

SimpleAspect.java 286B

12345678
  1. aspect SimpleAspect {
  2. before(): execution(* *(@Anno1 *)) {}
  3. before(): execution(* *(@Anno2 *)) {}
  4. before(): execution(* *(@Anno1 (*))) {}
  5. before(): execution(* *(@Anno2 (*))) {}
  6. before(): execution(* *(@Anno1 (@Anno2 *))) {}
  7. before(): execution(* *(@Anno2 (@Anno1 *))) {}
  8. }