Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
AW: Re: [aspectj-users] Access the call(Method)

Hello @all,

thank you all for your help! This was really fast :)

Finally I use now Simons method because I could follow and implement it easy.

thank you,
stefan walkner

> public aspect MyAspect
> {
>      pointcut myPointCut(MyObject targ) :
> 	call(boolean MyObject.method())
>          && target(targ);
>
>      before(MyObject targ): myPointCut(targ)
>      {
>           targ.otherMethod();
>      }
> }


--
Ein Service von http://www.sms.at



Back to the top