blob: bb90e4a9c5dbfc8d4db497106c0bbd4a681fb3e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
aspect Trace {
public static boolean expectNoSuchMethodError = false;
before(): execution(void doit(..)) {
System.out.println("enter");
}
after() returning: execution(void doit(..)) {
System.out.println("exit");
}
}
|