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

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

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