1 2 3 4 5 6 7
public aspect PCLib { public pointcut anyMethodExecution() : execution(* *(..)); public pointcut joinPointWithStringArg(String s) : args(s); }