Home | History | Annotate | Download | only in anno

Lines Matching full:clazz

28     static void printAnnotations(Class clazz) {
32 annos = clazz.getAnnotations();
33 System.out.println("annotations on TYPE " + clazz +
38 for (Constructor c: clazz.getDeclaredConstructors()) {
49 for (Method m: clazz.getDeclaredMethods()) {
60 for (Field f: clazz.getDeclaredFields()) {
158 Class clazz;
159 clazz = SimplyNoted.class;
160 printAnnotations(clazz);
161 clazz = INoted.class;
162 printAnnotations(clazz);
163 clazz = SubNoted.class;
164 printAnnotations(clazz);
165 clazz = FullyNoted.class;
166 printAnnotations(clazz);