aboutsummaryrefslogtreecommitdiffstats
path: root/tests/features161/optimizedAnnotationBinding/CaseThree.java
blob: e8d0c89e72960508fa83460da2e397e57868bf05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// CaseThree - ambiguous
import java.lang.annotation.*;

public class CaseThree {

  public static void main(String []argv) {
   
    CaseThree o = new CaseThree();
    o.a();
    o.b();
    o.c();
    o.d();
    o.e();
  }

                     public void a() {}
  @Anno(Level.NONE)  public void b() {}
  @Anno(Level.ONE)   public void c() {}
  @Anno(Level.TWO)   public void d() {}
  @Anno(Level.THREE) public void e() {}

}

enum Level { NONE, ONE, TWO, THREE; }

@Retention(RetentionPolicy.RUNTIME)
@interface Anno { Level value(); Level foo() default Level.ONE;}

aspect X {

  before(Level l): execution(@Anno !@Anno(Level.NONE) * *(..)) && @annotation(Anno(l)) {
    System.out.println(l);
  }
}