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.

DisjunctVarBinding_3.java 145B

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