summaryrefslogtreecommitdiffstats
path: root/tests/features151/ataround/X5.java
blob: f8b754ff3b026d30221cc07cebd91355234b4170 (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
// Bind the target and pass in the right order - but pass in a different target

aspect X5 {
  M newM = new M("2");

  void around(M t,String p): call(void M.method(String)) && args(p) && target(t) {
    System.err.println("advice from code aspect");
    proceed( newM , "faked" );
  }

  public static void main(String []argv) {
    M.main(argv);
  }
}



class M {

  String prefix;

  public M(String prefix) { this.prefix = prefix; }

  public static void main( String[] args ) {
    M m = new M("1");
    m.method("real");
  }

  public void method(String s) { System.err.println(prefix+s); }
}