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()
46 Annotation[] annos; in printAnnotations() local49 annos = clazz.getAnnotations(); in printAnnotations()51 "(" + annos.length + "):"); in printAnnotations()52 printAnnotationArray("", annos); in printAnnotations()56 annos = c.getDeclaredAnnotations(); in printAnnotations()58 printAnnotationArray(" ", annos); in printAnnotations()67 annos = m.getDeclaredAnnotations(); in printAnnotations()69 printAnnotationArray(" ", annos); in printAnnotations()78 annos = f.getDeclaredAnnotations(); in printAnnotations()80 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()
55 Decl annos: []56 Param annos (0) : []