blob: ed43f01457f9fb59f940fe24ac833cf1bb0aca3b (
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
|
import java.lang.annotation.Annotation;
import java.lang.reflect.Field;
import java.util.Collections;
import java.util.*;
public class Hello7 {
public static void main(String[] args) {
printAnnos(Hello7.class);
}
public static void printAnnos(Class clazz) {
try {
Annotation[] annos = clazz.getAnnotations();
System.out.println("Annotations on "+clazz.getName()+"? "+(annos!=null && annos.length!=0));
if (annos!=null && annos.length>0) {
List<Annotation> la = new ArrayList<Annotation>();
for (Annotation anno: annos) {
la.add(anno);
}
Collections.<Annotation>sort(la,new AnnoComparator());
System.out.println("Annotation count is "+annos.length);
for (Annotation anno: la) {
System.out.println(anno);
}
}
} catch (Exception e) {
e.printStackTrace();
}
}
static class AnnoComparator implements Comparator<Annotation> {
public int compare(Annotation a, Annotation b) {
return a.toString().compareTo(b.toString());
}
}
}
|