1 2 3 4 5 6 7 8 9 10
public aspect PerThisAspect perthis(this(Test)) { pointcut run (Test test) : execution(public void run()) && this(test); before (Test test) : run (test) { System.out.println("? PerThisAspect.run() test=" + test + " this=" + this); } }