Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] help me with these problems please.

Please look at the AspectJ programming guide, specifically, the
sections on Around advice (including proceed()), after returning
advice, and the call and execution join points.

http://www.eclipse.org/aspectj/doc/released/progguide/index.html

On Tue, Dec 2, 2008 at 11:30 AM, Xu Chao <coodysk8er@xxxxxxxxx> wrote:
> Hi,
> Could someone help me with some problems:
> how to retrieve all the parameters before all calls of different methods?
> how can I bypass the call in before()?
> how to get the return value of a call in after()?
> What I want to do roughly is to 1) get the parameters and return before and
> after each call for different methods respectively and 2) be able to bypass
> some method calls.
> Thank you very much!
> --
> Sincerely
> Chao Xu
>
> _______________________________________________
> aspectj-users mailing list
> aspectj-users@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/aspectj-users
>
>


Back to the top