1 2 3 4 5 6 7 8 9 10 11
abstract aspect Base { public final pointcut foo() : execution(* *(..)); } aspect Sub extends Base { public pointcut foo() : execution(* *(..)) && args(String); }