You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }