Hi,

How can I pick out direct calls to a certain method from a particular
method?
For example how can I define a pointcut that picks out calls to a2()
from a1() in class A below?

I've tried the following pointcut definition but it doesn't seem to work
as expected:

aspect a {
  pointcut a2CalledFromA1():
    execution(void A.a1()) && call(void A.a2());
}


class A {
  void a1() {
    a2();
  }

  void a2() {
  }

}



_______________________________________________
aspectj-users mailing list
aspectj-users@eclipse.org
https://dev.eclipse.org/mailman/listinfo/aspectj-users

Reply via email to