aboutsummaryrefslogtreecommitdiffstats
path: root/tests/java5/autoboxing/AspectShort.aj
blob: f6ee9d045d3987bc902ae855feb63966c365fb23 (plain)
1
2
3
4
5
6
7
8
9
10
11
public aspect AspectShort {

  // The pointcuts here expose context
  before(Short i): within(AutoboxingS) && call(* met*(..)) && args(i) {
    System.err.println("Short:"+i);
  }

  before(short i): within(AutoboxingS) && call(* met*(..)) && args(i) {
    System.err.println("short:"+i);
  }
}