Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] clarification on execution method signitures

Title: RE: [aspectj-users] Custom JoinPoints
 
execution(void foo(Object))
 
See the programming guide section on pointcuts for more details.
 
Wes
 
------------Original Message------------
From: "Ed Lauder" <elauder@xxxxxxxxxxxxx>
To: aspectj-users@xxxxxxxxxxx
Date: Fri, Oct-6-2006 1:06 PM
Subject: [aspectj-users] clarification on execution method signitures

 Anyone provide some clarity on execution such that you can single out one method call from another in an overloaded case?  Want to add a pointcut for foo passing single object.

 foo(Object obj1) {

}

 foo(Object obj1, Object obj2) {

}

_______________________________________________
aspectj-users mailing list
aspectj-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/aspectj-users

Back to the top