Re: [aspectj-users] How to trace method calls generated from a method

2014-01-06 Thread Andy Clement
y report calling method >>> information. >>> >>> Thanks, >>> krishna >>> >>> >>> From: samantha joseph To: >>> aspectj-users@eclipse.org Date: 12/31/2013 12:48 PM Subject: Re: >>> [aspectj-users] How to trace method

Re: [aspectj-users] How to trace method calls generated from a method

2014-01-06 Thread samantha joseph
t;> krishna >> >> >> From: samantha joseph To: >> aspectj-users@eclipse.org Date: 12/31/2013 12:48 PM Subject: Re: >> [aspectj-users] How to trace method calls generated from amethod Sent >> by: aspectj-users-boun...@eclipse.org >> --

Re: [aspectj-users] How to trace method calls generated from a method

2013-12-30 Thread samantha joseph
ay report calling method > information. > > Thanks, > krishna > > > From: samantha joseph To: > aspectj-users@eclipse.org Date: 12/31/2013 12:48 PM Subject: Re: > [aspectj-users] How to trace method calls generated from amethod

Re: [aspectj-users] How to trace method calls generated from a method

2013-12-30 Thread Krishna Jasty
ipse.org Date: 12/31/2013 12:10 PM Subject: [aspectj-users] How to trace method calls generated from a method Sent by: aspectj-users-boun...@eclipse.org I am using AspectJ in eclipse. i am not able to find out how to get methods called by a method using aspectj. For ex.. void method1() {

Re: [aspectj-users] How to trace method calls generated from a method

2013-12-30 Thread samantha joseph
2/31/2013 12:10 PM Subject: [aspectj-users] How to trace method > calls generated from a method Sent by: aspectj-users-boun...@eclipse.org > -- > > > > I am using AspectJ in eclipse. i am not able to find out how to get methods > called

Re: [aspectj-users] How to trace method calls generated from a method

2013-12-30 Thread Krishna Jasty
call(* **(..)) will enable for all methods. if you want method2 and method3 then as follows call(* method1(..)) ||call(* method1(..)) Thanks, From: Swati To: aspectj-users@eclipse.org Date: 12/31/2013 12:10 PM Subject: [aspectj-users] How to trace method calls generated from a method Sent

[aspectj-users] How to trace method calls generated from a method

2013-12-30 Thread Swati
I am using AspectJ in eclipse. i am not able to find out how to get methods called by a method using aspectj. For ex.. void method1() { method2(); method3(); } when method1 is called, then i want to get that method2() and method3() are called by method1(). -- View this message in context: