1 2 3 4 5 6 7
public aspect Aspect { pointcut sayCalls(): call(* say(..)); before(): sayCalls() { System.err.println("Before say()"); } }