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ů.

TestAspect.java 254B

12345678
  1. public privileged aspect TestAspect {
  2. pointcut TestInheritance(Test test) : target(test) && execution (* Generic1.*(..));
  3. after (Test test) : TestInheritance(test) {
  4. System.err.println("Aspects:"+thisJoinPoint);
  5. }
  6. }