blob: 81c13f14d482a19663542b57b145e3cac12f8a55 (
plain)
1
2
3
4
5
6
7
8
9
|
public class Hello {
@MyAnnotation(dummy1 = "alma")
private String dummy;
public static void main(String []argv) throws Exception {
System.out.print(Hello.class.getDeclaredField("dummy").getDeclaredAnnotations()[0]);
}
}
|