blob: 799e7ac7541fc873afa45b17398bc555dfff173a (
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
|
package test.aspects2;
import test.aspects.C1;
public class C2 extends C1 {
public void callAMethodC2() {
aMethod(); // Should be a marker here...
}
public void innerClassCall() {
InnerClass ic = new InnerClass();
ic.foo();
}
protected class InnerClass {
public void foo() {
aMethod(); // Should be a marker here...
}
}
public static void main(String [] args) {
C1 c1 = new C1();
c1.callAMethod();
C2 c2 = new C2();
c2.aMethod(); // Should be a marker here...
c2.callAMethod();
c2.callAMethodC2();
c2.innerClassCall();
}
}
|