You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

NPE.aj 185B

1234567891011121314
  1. package a.b.d;
  2. //import a.b.c.I;
  3. public aspect NPE {
  4. pointcut ii(I i) : execution(* I.*(..)) && this(i);
  5. after(I i) returning : ii(i) {
  6. System.out.println(i);
  7. }
  8. }