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

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

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