[aspectj-users] around advice for constructor call

2013-06-04 Thread Sojan Mathew
Hi AspectJ Community Members, I'm using AOP for unit testing purpose. (to replace external dependency). In my app, I'm creating object of ClassA (which is present in external lib). I want to byepass constructor call of ClassA . I tried call pointcut and around advice as below, but it is not

Re: [aspectj-users] around advice for constructor call

2013-06-04 Thread Alexander Kriegisch
The error message says it: You are intercepting a call which does not return void (but ClassA). Consequently, your around advice should also return ClassA. Alexander Kriegisch Am 04.06.2013 um 11:33 schrieb Sojan Mathew sojanmat...@gmail.com: Hi AspectJ Community Members, I'm using AOP for

Re: [aspectj-users] around advice for constructor call

2013-06-04 Thread Sojan Mathew
Hi Alexander, Thank you for the reply. Basically what I need is, bypass constructor call. In around advice, from where I can get object to be returned? (I'm NOT calling proceed inside around, to bypass constructor body execution) How can bypass constructor body execution? Regards Sojan