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.

AspectShort.aj 306B

1234567891011
  1. public aspect AspectShort {
  2. // The pointcuts here expose context
  3. before(Short i): within(AutoboxingS) && call(* met*(..)) && args(i) {
  4. System.err.println("Short:"+i);
  5. }
  6. before(short i): within(AutoboxingS) && call(* met*(..)) && args(i) {
  7. System.err.println("short:"+i);
  8. }
  9. }