// A.java aspect A { pointcut c() : call(* *everyWhere*(..)) && (target(ID) || target(JPT)); before(): c() { System.out.println(thisJoinPoint); } }