HomeSort by relevance Sort by last modified time
    Searched refs:AnnotationMember (Results 1 - 2 of 2) sorted by null

  /libcore/luni/src/main/java/org/apache/harmony/lang/annotation/
AnnotationFactory.java 32 import static org.apache.harmony.lang.annotation.AnnotationMember.ARRAY;
33 import static org.apache.harmony.lang.annotation.AnnotationMember.ERROR;
44 * @see android.lang.annotation.AnnotationMember
54 Map<Class<? extends Annotation>, AnnotationMember[]>
55 cache = new WeakHashMap<Class<? extends Annotation>, AnnotationMember[]>();
61 public static AnnotationMember[] getElementsDescription(Class<? extends Annotation> annotationType ) {
62 AnnotationMember[] desc = cache.get(annotationType);
69 desc = new AnnotationMember[m.length];
75 desc[idx] = new AnnotationMember(name,
78 desc[idx] = new AnnotationMember(name, t, type, element)
    [all...]
AnnotationMember.java 54 public class AnnotationMember implements Serializable {
106 * @see #setDefinition(AnnotationMember)
108 public AnnotationMember(String name, Object val) {
129 public AnnotationMember(String name, Object val, Class type, Method m) {
158 protected AnnotationMember setDefinition(AnnotationMember copy) {
198 if (obj instanceof AnnotationMember) {
199 AnnotationMember that = (AnnotationMember)obj;

Completed in 65 milliseconds