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

DemoApp2.java 269B

123456789101112131415
  1. import org.aspectj.lang.annotation.*;
  2. public class DemoApp2 {
  3. public static void main(String[]argv) {}
  4. private void recurseInsteadOfWhile() {
  5. say();
  6. }
  7. public void say() { }
  8. }
  9. aspect X {
  10. void around(): call(public void DemoApp2+.say(..)) {
  11. }
  12. }