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

Foobar.java 148B

12345678
  1. package p1;
  2. import org.aspectj.lang.annotation.SuppressAjWarnings;
  3. @SuppressAjWarnings
  4. public aspect Foobar {
  5. before(): execution(* *(..)) {}
  6. }