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

AspectDeclareExtends.aj 347B

12345678910111213141516171819202122
  1. // Simple aspect that tramples all over Simple.java
  2. public aspect AspectDeclareExtends {
  3. pointcut methodRunning(): execution(* *(..));
  4. declare parents: Simple extends InTheWay;
  5. // declare soft:
  6. //
  7. // declare precedence:
  8. //
  9. // declare warning:
  10. //
  11. // declare error:
  12. //
  13. }
  14. interface MarkerInterface {}
  15. class InTheWay {}