1 2 3 4 5 6 7 8
aspect IfPointcut { after(A a, B b) returning: execution(* foo(*,*)) && (args(b,a) || args(a,b)) { System.out.println("Woven"); } }