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.

Test015.java 189B

1234567891011
  1. // "@Pointcut with non-empty method body"
  2. import org.aspectj.lang.annotation.*;
  3. @Aspect
  4. class A{
  5. @Pointcut("call(* *.*(..))")
  6. void someCall(){
  7. System.out.println("whoops");
  8. }
  9. }