1 2 3 4 5 6 7
public aspect A1 { pointcut p() : execution(public void C.method2(..)); before() : p() { } }