Searched refs:declaredAnnotations (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DConstructor.java616 return (T) declaredAnnotations().get(annotationClass);
623 return AnnotationParser.toArray(declaredAnnotations());
626 private transient Map<Class<? extends Annotation>, Annotation> declaredAnnotations; field in class:Constructor
628 private synchronized Map<Class<? extends Annotation>, Annotation> declaredAnnotations() { method in class:Constructor
629 if (declaredAnnotations == null) {
630 declaredAnnotations = AnnotationParser.parseAnnotations(
635 return declaredAnnotations;
H A DField.java1114 return (T) declaredAnnotations().get(annotationClass);
1121 return AnnotationParser.toArray(declaredAnnotations());
1124 private transient Map<Class<? extends Annotation>, Annotation> declaredAnnotations; field in class:Field
1126 private synchronized Map<Class<? extends Annotation>, Annotation> declaredAnnotations() { method in class:Field
1127 if (declaredAnnotations == null) {
1128 declaredAnnotations = AnnotationParser.parseAnnotations(
1133 return declaredAnnotations;
H A DMethod.java700 return (T) declaredAnnotations().get(annotationClass);
707 return AnnotationParser.toArray(declaredAnnotations());
710 private transient Map<Class<? extends Annotation>, Annotation> declaredAnnotations; field in class:Method
712 private synchronized Map<Class<? extends Annotation>, Annotation> declaredAnnotations() { method in class:Method
713 if (declaredAnnotations == null) {
714 declaredAnnotations = AnnotationParser.parseAnnotations(
719 return declaredAnnotations;
/openjdk7/jdk/src/share/classes/java/lang/
H A DClass.java2322 annotations = declaredAnnotations = null;
3157 return AnnotationParser.toArray(declaredAnnotations);
3162 private transient Map<Class<? extends Annotation>, Annotation> declaredAnnotations; field in class:Class
3168 declaredAnnotations = AnnotationParser.parseAnnotations(
3172 annotations = declaredAnnotations;
3181 annotations.putAll(declaredAnnotations);
/openjdk7/jdk/test/java/lang/annotation/
H A DUnitTest.java3564 Annotation[] declaredAnnotations = e.getDeclaredAnnotations();
3565 for (Annotation a : declaredAnnotations) {

Completed in 82 milliseconds