Searched refs:AnnotationMember (Results 1 - 3 of 3) sorted by relevance

/libcore/luni/src/main/java/libcore/reflect/
H A DAnnotationFactory.java42 * @see AnnotationMember
51 private static final transient Map<Class<? extends Annotation>, AnnotationMember[]> cache =
52 new WeakHashMap<Class<? extends Annotation>, AnnotationMember[]>();
58 public static AnnotationMember[] getElementsDescription(Class<? extends Annotation> annotationType) {
60 AnnotationMember[] desc = cache.get(annotationType);
69 AnnotationMember[] desc = new AnnotationMember[declaredMethods.length];
75 desc[i] = new AnnotationMember(name, element.getDefaultValue(), type, element);
77 desc[i] = new AnnotationMember(name, t, type, element);
93 AnnotationMember[] element
[all...]
H A DAnnotationMember.java54 public final class AnnotationMember implements Serializable { class in inherits:Serializable
106 * @see #setDefinition(AnnotationMember)
108 public AnnotationMember(String name, Object val) { method in class:AnnotationMember
129 public AnnotationMember(String name, Object val, Class type, Method m) { method in class:AnnotationMember
158 protected AnnotationMember setDefinition(AnnotationMember copy) {
198 if (obj instanceof AnnotationMember) {
199 AnnotationMember that = (AnnotationMember)obj;
H A DAnnotationAccess.java680 AnnotationMember[] members = new AnnotationMember[fieldCount];
693 members[i] = new AnnotationMember(nameString, value, returnType, method);

Completed in 141 milliseconds