Hi S (?),
you can get the field's name from the joinpoint's signature. I am not
sure if it's qualified but if it's not then you can qualify it
yourself with the class of the target object. This page here could
help:
http://blogs.codehaus.org/people/tirsen/archives/000690_undo_in_aspectj.html
Eri
Hi Andrew,
On Wed, Apr 22, 2009 at 11:55 AM, Andrew Eisenberg wrote:
> Hi,
>
> A little confused about what you mean by #1. What is the fully
> qualified name of a local variable? Or are you only looking to do
> this for fields? If so, how are you planning on distinguishing them?
>
Thanks fo
Hi,
A little confused about what you mean by #1. What is the fully
qualified name of a local variable? Or are you only looking to do
this for fields? If so, how are you planning on distinguishing them?
It is not hard to get the type of the field/variable:
thisJoinPointStaticPart.getSignature()
I believe that this page has the information that you are looking for:
http://wiki.eclipse.org/Developer%27s_guide_to_building_tools_on_top_of_AJDT_and_AspectJ#Getting_the_contents_of_an_AJCompilationUnit
Let us know if there is something else you need.
On Wed, Apr 22, 2009 at 5:45 AM, Kenan ERK
Hi Wim,
just a followup to have you and others Maven users up to date. The
modified ant script works correctly and uploads artifacts to the rsync
repo. It will also be possible to a final user to modify deployment
properties to deploy a modified or instable version of ApsectJ to it's
own Maven
ok, thank you for the effort already!
2009/4/16 Andy Clement
> Simone has done the magic for my build script, I just need to find
> some time to run it - i will try and do it either today or tomorrow.
>
> Not much longer Wim ! :)
>
> Andy.
>
> 2009/4/16 Wim Deblauwe :
> > Any updates on this?
>
Hi!
I am developing a plugin to find methods advised by the selected aspect in
eclipse. (though it is already done in ajdt for eclipse, but I couldn't find
that code snippet)
I may use "ajc -showWeaveInfo ..." command but I need the class(es) used in
aspect in order to compile them. But at this t
Hi all,
I am implementing some dynamic programming analysis using AspectJ. For
example, consider the program:
Set s = new HashSet();
s.add(o1);
s.remove(o1);
In this program at each add and remove method call, I need the
following information:
1) a string showing the type of s and a fully quali