You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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