1) Are there any listeners available for when a class is woven??

2) Is there access to the "actual" pointcut when an advice is executed?

As an example

This pointcut

public pointcut NormalizedMessage_new() :
   call(NormalizedMessage+.new(..));

This is thisJoinPoint.toLongString()

"call(public com.sun.jbi.messaging.MessageImpl())"


Which is different. I'd like to have access to

"call(NormalizedMessage+.new(..))"

and really

NormalizedMessage_new() :
   call(NormalizedMessage+.new(..));



I'd like to have a GUI which shows all active joinpoints and allows a user to add new joinpoints, remove them, and edit the code which runs when the joinpoint is executed.




_______________________________________________
aspectj-users mailing list
[email protected]
https://dev.eclipse.org/mailman/listinfo/aspectj-users

Reply via email to