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

PointcutsInInterfaces.aj 194B

123456789101112131415
  1. public interface PointcutsInInterfaces {
  2. public pointcut foo() : execution(* *(..));
  3. }
  4. class C {
  5. void foo() {}
  6. }
  7. aspect A {
  8. declare warning : PointcutsInInterfaces.foo() : "aha!";
  9. }