blob: d9b3bbf002a9620de322bcd234c88ca644ccb53a (
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
|
// nested values, more complex than just a marker
import java.lang.annotation.*;
aspect X {
declare parents:
@SomeAnnotation(a = @Foo(value="123")) * implements java.io.Serializable;
}
@SomeAnnotation(a = @Foo(value="123"))
public class Example {
public static void main(String []argv) {
Example e = new Example();
if (e instanceof java.io.Serializable) {
System.out.println("yes");
} else {
System.out.println("no");
}
}
}
@Retention(RetentionPolicy.RUNTIME)
@interface Foo {
String value();
}
@Retention(RetentionPolicy.RUNTIME)
@interface SomeAnnotation {
Foo a();
}
|