1 2 3 4 5 6 7 8 9 10
package primary; public aspect BetaA { pointcut m2call(): call(* m2(..)); before(): m2call() { System.err.println("m2 got called"); } }