Re: [aspectj-users] Adding a new buddy field for EVERY existing field in a class ?!

2013-03-09 Thread Ron DiFrango
" mailto:aspectj-users@eclipse.org>> Date: Saturday, March 9, 2013 10:29 AM To: "aspectj-users@eclipse.org<mailto:aspectj-users@eclipse.org>" mailto:aspectj-users@eclipse.org>> Subject: Re: [aspectj-users] Adding a new buddy field for EVERY existing field in a class ?!

Re: [aspectj-users] Adding a new buddy field for EVERY existing field in a class ?!

2013-03-09 Thread Alexander Kriegisch
A general comment: In connection with AspectJ there is a lot of bias that several straightforward solutions might be "overhead", often before people even try them. Instead they come up with very complex ideas which usually introduce much more (or at least no less) overhead. Another thing I see

Re: [aspectj-users] Adding a new buddy field for EVERY existing field in a class ?!

2013-03-09 Thread y a
.azriel.sams...@gmail.com] > *Sent:* Saturday, March 09, 2013 7:18 AM > *To:* aspectj-users@eclipse.org > *Subject:* [aspectj-users] Adding a new buddy field for EVERY existing > field in a class ?! > >I want an aspect to store the old value for each field set operation &g

Re: [aspectj-users] Adding a new buddy field for EVERY existing field in a class ?!

2013-03-09 Thread Ron DiFrango
s@eclipse.org Subject: [aspectj-users] Adding a new buddy field for EVERY existing field in a class ?! I want an aspect to store the old value for each field set operation So if a class has 3 long fields, i now need 3 new fields in the aspect Is this possible ?! And is there a suitable ajc syntax t

[aspectj-users] Adding a new buddy field for EVERY existing field in a class ?!

2013-03-09 Thread y a
I want an aspect to store the old value for each field set operation So if a class has 3 long fields, i now need 3 new fields in the aspect Is this possible ?! And is there a suitable ajc syntax to access such a buddy field in a set() advice ? my example: aspect to "print" the field changes, bu