Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] AspectJ advising with generic pointcuts

@Pointcut("execution(public * *(Vehicle+, ..))  && args(myarg, ..) ")
public void myMethod(Vehicle myarg)  {}


On Mon, Jan 3, 2011 at 8:38 AM, Srinivas <tssrinivas@xxxxxxxxx> wrote:

This seems like compile error. What is the correct syntax ?

@Pointcut("execution(public * *(..))  && args(myarg ) ")
       public   void myMethod(  Vehicle+ myarg)  {}


--
View this message in context: http://aspectj.2085585.n4.nabble.com/AspectJ-advising-with-generic-pointcuts-tp3166319p3172201.html
Sent from the AspectJ - users mailing list archive at Nabble.com.
_______________________________________________


Back to the top