選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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