Searched refs:annos (Results 1 – 4 of 4) sorted by relevance
38 public static String asString(Annotation[] annos) { in asString() argument41 if (annos == null) { in asString()43 } else if (annos.length == 0) { in asString()46 for (int i = 0; i < annos.length; ++i) { in asString()47 msg += asString(annos[i]); in asString()49 if (i != annos.length - 1) { in asString()
47 Annotation[] annos; in printAnnotations() local50 annos = clazz.getAnnotations(); in printAnnotations()52 "(" + annos.length + "):"); in printAnnotations()53 printAnnotationArray("", annos); in printAnnotations()57 annos = c.getDeclaredAnnotations(); in printAnnotations()59 printAnnotationArray(" ", annos); in printAnnotations()68 annos = m.getDeclaredAnnotations(); in printAnnotations()70 printAnnotationArray(" ", annos); in printAnnotations()79 annos = f.getDeclaredAnnotations(); in printAnnotations()81 printAnnotationArray(" ", annos); in printAnnotations()[all …]
64 private static Annotation[] sortedAnno(Annotation[] annos) { in sortedAnno() argument65 Arrays.sort(annos, Comparator.comparing((v) -> v.toString())); in sortedAnno()66 return annos; in sortedAnno()
59 Decl annos: []60 Param annos (0) : []