Home
last modified time | relevance | path

Searched refs:valuesMethod (Results 1 – 1 of 1) sorted by relevance

/libcore/luni/src/main/java/libcore/reflect/
DAnnotatedElements.java92 Method valuesMethod; in insertAnnotationValues() local
94 valuesMethod = annotation.getClass().getDeclaredMethod("value"); in insertAnnotationValues()
105 if (!valuesMethod.getReturnType().isArray()) { in insertAnnotationValues()
111 if (!annotationClass.equals(valuesMethod.getReturnType().getComponentType())) { in insertAnnotationValues()
119 nestedAnnotations = (T[])valuesMethod.invoke(annotation); // Safe because of #getMethod. in insertAnnotationValues()