Re: [aspectj-users] ITD constructor access methods defined in super class

2013-07-23 Thread pai
Hi! the issue is accepted & fixed https://bugs.eclipse.org/bugs/show_bug.cgi?id=413378 Cheers! -- View this message in context: http://aspectj.2085585.n4.nabble.com/ITD-constructor-access-methods-defined-in-super-class-tp4651029p4651044.html Sent from the AspectJ - users mailing list archive

Re: [aspectj-users] ITD constructor access methods defined in super class

2013-07-19 Thread pai
Hi~ I have filed a bug. https://bugs.eclipse.org/bugs/show_bug.cgi?id=413378 F.Y.I. -- View this message in context: http://aspectj.2085585.n4.nabble.com/ITD-constructor-access-methods-defined-in-super-class-tp4651029p4651037.html Sent from the AspectJ - users mailing list archive at Nabble.

Re: [aspectj-users] ITD constructor access methods defined in super class

2013-07-17 Thread pai
Thanks a lot! I'll provide info about my environment and try to file a bug Really thank you for spending time in my questions. Cheers! -- View this message in context: http://aspectj.2085585.n4.nabble.com/ITD-constructor-access-methods-defined-in-super-class-tp4651029p4651033.html Sent from

Re: [aspectj-users] ITD constructor access methods defined in super class

2013-07-17 Thread Ramnivas Laddad
There seems to be a bug in the AspectJ compiler. With your code as is, I see the same error, but there is also a warning ("- inter-type constructor does not contain explicit constructor call: field initializers in the target type will not be executed [Xlint:noExplicitConstructorCall]". Then I modi

[aspectj-users] ITD constructor access methods defined in super class

2013-07-17 Thread pai
It seems *super.someMethod()* can not be correctly resolved in the constructor added by ITD It can be compiled with no problem, but* at runtime, exception is raised.* The class which I'll add a new constructor to: *public class Child extends Parent{ public String name = "John"