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.

AspectLong.aj 301B

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