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.

AspectChar.aj 311B

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