aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/BindingInterfaces.java
blob: 73d5e35170b791ff38d2a9ec47a63b043335cfb7 (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
import org.aspectj.testing.Tester;
import java.util.*;
public class BindingInterfaces {
    public static void main(String[] args) {
        new BindingInterfaces().realMain(args);
    }
    public void realMain(String[] args) {

        I i0 = new I(){}; Tester.checkEqual(str(i0), "I", "i0");
        I ij = new J(){}; Tester.checkEqual(str(ij), "JI", "ij");
        I ik = new K(){}; Tester.checkEqual(str(ik), "KJI", "ik");

        J j0 = new J(){}; Tester.checkEqual(str(j0), "JI", "j0");
        J jk = new K(){}; Tester.checkEqual(str(jk), "KJI", "jk");

        K k0 = new K(){}; Tester.checkEqual(str(k0), "KJI", "k0");
    }

    private String str(Object o) {
        return str(o.getClass().getInterfaces()[0]);
    }

    private String str(Class c) {
        String str = c.getName();
        Class[] is = c.getInterfaces();
        for (int i = 0; i < is.length; i++) {
            str += str(is[i]);
        }
        return str;
    }
}

interface I {}
interface J {} //extends I {}
interface K {} //extends J {}

aspect Aspect {
    declare parents: J implements I;
    declare parents: K implements J;
}