Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] Newbie question : weaving Action.actionPerformed() method

It was really a newbie question. The execution(Signature) pointcut is
exactly what I need.

Thanks a lot,

Gaetan

On Sat, 5 Feb 2005 22:12:02 +0000, Russell Miles <russellmiles@xxxxxxx> wrote:
> Would using execution(Signature) pointcut be out of the question? You'd
> still be advising before your actionPerformed methods are executed (not
> called but looking at your code that shouldn't be a problem) and you
> won't have to weave into third party libraries (with all the licensing
> issues that will no doubt result in).
> 
> Cheers,
> 
> Russ
> 
> On 5 Feb 2005, at 21:35, Gaetan Zoritchak wrote:
> 
> > Hi all,
> >
> > I want to put an advise on all the call to the
> > Action.actionPerformed() method in order to improve the coding policy
> > of my application.
> >
> > I used the following code :
> >
> > public aspect CheckActionIdPolicy {
> >
> >     before ()
> >       : call(public void Action+.actionPerformed(*)){
> >         System.out.println("Calling actionPerformed on :"
> >              + thisJoinPoint.getTarget());
> >     }
> > }
> >
> >
> > The problem is that I only intercept method calls from my code to
> > actionPerformed().
> >
> > How can I intercept the calls from the javax.swing package to my
> > actionPerformed methods?
> >
> > Thanks,
> >
> > ======================
> > Gaetan Zoritchak
> > ======================
> > _______________________________________________
> > aspectj-users mailing list
> > aspectj-users@xxxxxxxxxxx
> > http://dev.eclipse.org/mailman/listinfo/aspectj-users
> 
> _______________________________________________
> aspectj-users mailing list
> aspectj-users@xxxxxxxxxxx
> http://dev.eclipse.org/mailman/listinfo/aspectj-users
>


Back to the top