Searched defs:getDeclaredAnnotations (Results 1 - 7 of 7) sorted by relevance

/dalvik/libcore/luni/src/main/java/java/lang/reflect/
H A DAnnotatedElement.java66 Annotation[] getDeclaredAnnotations(); method in interface:AnnotatedElement
/dalvik/libcore/luni-kernel/src/main/java/java/lang/
H A DPackage.java101 return getDeclaredAnnotations(this, true);
108 * @see java.lang.reflect.AnnotatedElement#getDeclaredAnnotations()
111 public Annotation[] getDeclaredAnnotations() { method in class:Package
112 return getDeclaredAnnotations(this, false);
125 private static native Annotation[] getDeclaredAnnotations(Package pkg, method in class:Package
H A DClass.java311 * @see #getDeclaredAnnotations()
327 Annotation[] annos = getDeclaredAnnotations();
334 annos = sup.getDeclaredAnnotations();
521 native public Annotation[] getDeclaredAnnotations(); method in class:Class
/dalvik/libcore/luni-kernel/src/main/java/java/lang/reflect/
H A DAccessibleObject.java193 public Annotation[] getDeclaredAnnotations() { method in class:AccessibleObject
198 // for all but Class, getAnnotations == getDeclaredAnnotations
199 return getDeclaredAnnotations();
H A DConstructor.java218 public Annotation[] getDeclaredAnnotations() { method in class:Constructor
219 return getDeclaredAnnotations(declaringClass, slot);
221 native private Annotation[] getDeclaredAnnotations(Class declaringClass, method in class:Constructor
H A DMethod.java247 public Annotation[] getDeclaredAnnotations() { method in class:Method
248 return getDeclaredAnnotations(declaringClass, slot);
250 native private Annotation[] getDeclaredAnnotations(Class declaringClass, method in class:Method
H A DField.java195 public Annotation[] getDeclaredAnnotations() { method in class:Field
196 return getDeclaredAnnotations(declaringClass, slot);
199 native private Annotation[] getDeclaredAnnotations(Class declaringClass, int slot); method in class:Field

Completed in 98 milliseconds