summaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/mixin/inc1/src/CaseA.java
blob: 163ad2c80f006c65ad14178c3c730a3211886bfe (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
// TESTING: Very basics with a simple static factory method
import org.aspectj.lang.annotation.*;
 
public class CaseA {
  public static void main(String[]argv) {
    CaseA ca = new CaseA();
    ((I)ca).methodOne(); // will only succeed if mixin applied
  }
}

aspect X {
  @DeclareMixin("CaseA")
  public static I createImplementation() {
    System.out.println("Delegate factory invoked");
    return new Implementation();
  }
}

interface I {
  void methodOne();
}

class Implementation implements I {
  public void methodOne() {
    System.out.println("methodOne running");
  }
}