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.

AtAspectWithPerClause.aj 237B

1234567891011121314151617
  1. import org.aspectj.lang.annotation.*;
  2. @Aspect("perthis(pc())")
  3. public class AtAspectWithPerClause {
  4. @Pointcut("execution(* *(..))")
  5. public void pc() {}
  6. }
  7. @Aspect
  8. class Foo {
  9. @Pointcut("execution(* *(..))")
  10. public void pc() {}
  11. }