Re: [aspectj-users] Behaviours of new constructor added by AspectJ ITD

2013-07-16 Thread Ramnivas Laddad
For Q1: AspectJ compiler (and AJDT) will issue - inter-type constructor does not contain explicit constructor call: field initializers in the target type will not be executed [Xlint:noExplicitConstructorCall] when you don't have explicit constructor call. Can you post Q2 freshly in a separate

[aspectj-users] Invoking proceed() from an inner class

2013-07-16 Thread Archie Cobbs
Is it possible to invoke proceed() in an aspect from an inner class? I have a need to pass off the execution of an advised method to another method that is going to invoke it as a Callable. This will all be done synchronously. A simplified version of what I'm trying to do would be: public

Re: [aspectj-users] Invoking proceed() from an inner class

2013-07-16 Thread Ramnivas Laddad
See worker object pattern described in http://stackoverflow.com/questions/12018585/how-to-intercept-proceed-in-another-aspectj-aspect On Tue, Jul 16, 2013 at 3:59 PM, Archie Cobbs arc...@dellroad.org wrote: Is it possible to invoke proceed() in an aspect from an inner class? I have a need to