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