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

Asp.aj 276B

123456789
  1. import java.util.Arrays;
  2. public aspect Asp {
  3. before() : execution(* *(@Ann (*), ..)) {
  4. //System.out.println(thisJoinPoint.getSignature().toShortString() + ' ' + Arrays.asList(thisJoinPoint.getArgs()));
  5. throw new RuntimeException("expected exception");
  6. }
  7. }