1 2 3 4 5 6 7 8 9
public aspect A1 { pointcut m1(): execution(* main(..)); before(): m1() { System.err.println("Before main runs"); } }