Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [aspectj-users] binding parts of the formals

abstract aspect Test
{
   abstract pointcut Test(int t);
   after(int t): Test(t) {
     //some code do with t
   }
}

aspect TTest extends Test
{
   pointcut Test(int s): args(int, s) 
                         && call(public void Target.Method(int, int));
}



Back to the top