Hi,

I try to use around advice for a general use. I would like to use around for 
all the methods of a class which one does not know in advance the functions. 
For example, for a class A has which has 6 methods and a file aspectJ which 
defines a pointcut A.* for all the methods of A, is it possible to define a 
generic around for example:

pointcut methods (): execution (public A.* (...));

Object around (): methods () {
….
return proceed ();
}

knowing that the methods of A have different signatures ! I tested the code 
written above and it does not function, it never passes in the around  method 
whereas with a before or an after for the same pointcut, it works very well. If 
somebody already had to deal with this problem, I am waiting your answers!

Cordially

Antoine

_________________________________________________________________
Votre contact a choisi Hotmail, l'e-mail ultra sécurisé. Créez un compte 
gratuitement !
http://www.windowslive.fr/hotmail/default.asp
_______________________________________________
aspectj-users mailing list
[email protected]
https://dev.eclipse.org/mailman/listinfo/aspectj-users

Reply via email to