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