Re: [aspectj-users] Capturing data at a pointcut

2009-04-22 Thread Eric Bodden
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

Re: [aspectj-users] Capturing data at a pointcut

2009-04-22 Thread 100ji
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

Re: [aspectj-users] Capturing data at a pointcut

2009-04-22 Thread Andrew Eisenberg
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()

Re: [aspectj-users] how to find methods advised by an aspect using eclipse plugin

2009-04-22 Thread Andrew Eisenberg
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

Re: [aspectj-users] AspectJ 1.6.4 released

2009-04-22 Thread Simone Gianni
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

Re: [aspectj-users] AspectJ 1.6.4 released

2009-04-22 Thread Wim Deblauwe
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? >

[aspectj-users] how to find methods advised by an aspect using eclipse plugin

2009-04-22 Thread Kenan ERKORKMAZ
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

[aspectj-users] Capturing data at a pointcut

2009-04-22 Thread 100ji
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