/* Based on code written by Michael Haupt */ package test.hello; public class HelloAspect { hook HelloHook { HelloHook(method()) { execution(method); } before() { System.out.println("I am a before advice."); } } }