summaryrefslogtreecommitdiffstats
path: root/tests/java5/annotations/binding/CallAnnBinding7.aj
blob: 565def3df60ea2085a8cbc6f4bd1cefca65f6908 (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
35
36
37
38
39
40
41
42
43
import java.lang.annotation.*;

@Retention(RetentionPolicy.RUNTIME)
@interface Colored { String color(); }

public class CallAnnBinding7 {
  public static void main(String[]argv) {
    new CallAnnBinding7().m1();
    new CallAnnBinding7().m2();
    new CallAnnBinding7().m3();
  }

  @Colored(color="red")
  public void m1() {
    System.err.println("method1");
  }

  @Colored(color="green")
  public void m2() {
    System.err.println("method2");
  }

  @Colored(color="blue")
  public void m3() {
    System.err.println("method3");
  }

}

aspect X {
  int i = 0;

  pointcut p(Colored c): call(* *(..)) && !within(X) && @annotation(c);
  
  before(Colored c): p(c) {
  	i++;
  	if (i==1 && !c.color().equals("red")) throw new RuntimeException("First time through should be red, but is "+c.color());
  	if (i==2 && !c.color().equals("green")) throw new RuntimeException("Second time through should be green, but is "+c.color());
  	if (i==3 && !c.color().equals("blue")) throw new RuntimeException("Third time through should be blue, but is "+c.color());
  	System.err.println(c.color());
  }
}