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.

AnotherAzpect.java 159B

1234567
  1. package extra;
  2. public aspect AnotherAzpect {
  3. before(): execution(* *(..)) && !within(*Azpect) {
  4. System.out.println("AnotherAzpect running");
  5. }
  6. }