summaryrefslogtreecommitdiffstats
path: root/tests/new/MethodConflictsCP.java
blob: 11376ac7390e907b929204903d0d4d79682d9f54 (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
44
45
46
47
48
49
import org.aspectj.testing.Tester;

public class MethodConflictsCP {
    public static void main(String[] args) {
        C c = new C();
        Tester.checkEqual(c.ma(), "C");        
        Tester.checkEqual(c.m1(), "I1-C");
        Tester.checkEqual(c.m2(), "I2-C");

        I1 i1 = c;
        Tester.checkEqual(i1.m2(), "I2-C");

        Tester.checkEqual(new CO().toString(), "IO");
    }   
}

class C implements I1, I2 {
    public String ma() { return "C"; }
    //private void mp() { }
}

interface BaseI {
    public String m1();
    public String m2();
}

interface I1 extends BaseI {
    static aspect BODY {
        public String I1.m1() { return "I1-" + ma(); }
        public abstract String I1.ma();
    }
}

interface I2 extends BaseI {
    static aspect BODY {
        public String I2.m2() { return "I2-" + ma(); }
        public abstract String I2.ma();
        private String I2.mp() { return "I2"; }
    }
}

interface IO {
    static aspect BODY {
        public String IO.toString() { return "IO"; }
    }
}

class CO implements IO {  
}