Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

PerThisAspect.aj 258B

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