1 2 3 4 5 6 7 8 9 10 11 12 13
aspect Trace { public static boolean expectNoSuchMethodError = false; before(): execution(void doit(..)) { System.out.println("entering"); } after() returning: execution(void doit(..)) { System.out.println("exiting"); } }