blob: b92b4421ef4203c7fb7578471885b97ff42ee659 (
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
|
import org.aspectj.lang.annotation.*;
public class Basic2b {
public static void main(String []argv) {
Basic2b b = new Basic2b();
if (!(b instanceof X.I)) throw new RuntimeException("Basic2b should implement I");
}
}
@Aspect class X {
interface I {
}
public static class IIimpl implements I {
public void m2() { }
}
@DeclareParents(value="Basic2b",defaultImpl=X.IIimpl.class)
private I simplefield;
@Before("execution(* *(..))")
public void advice1() {}
}
|