blob: 77d7510ff4ee118b7ae2c08e9168def558a0a7ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package a.b.d;
//import a.b.c.I;
public aspect NPE {
pointcut ii(I i) : execution(* I.*(..)) && this(i);
after(I i) returning : ii(i) {
System.out.println(i);
}
}
|