1 2 3 4 5 6 7 8
abstract aspect SimpleTracing perthis(tracedCall()) { abstract pointcut tracedCall(); before(): tracedCall() { System.out.println("Entering: " + thisJoinPoint); } }