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

X.java 135B

123456
  1. import org.aspectj.lang.annotation.*;
  2. @RequiredTypes("A")
  3. aspect X {
  4. before(): execution(* Code.*(..)) {System.out.println("x");}
  5. }