HomeSort by relevance Sort by last modified time
    Searched defs:annotationType (Results 1 - 21 of 21) sorted by null

  /libcore/luni/src/main/java/java/lang/annotation/
IncompleteAnnotationException.java 31 private Class<? extends Annotation> annotationType;
39 * @param annotationType
44 public IncompleteAnnotationException(Class<? extends Annotation> annotationType,
47 annotationType.getName());
48 this.annotationType = annotationType;
57 public Class<? extends Annotation> annotationType() {
58 return annotationType;
Annotation.java 35 Class<? extends Annotation> annotationType();
  /external/proguard/src/proguard/
MemberSpecification.java 34 public final String annotationType;
59 * @param annotationType the name of the class that must be an
73 String annotationType,
79 this.annotationType = annotationType;
100 (this.annotationType == null ? other.annotationType == null : this.annotationType.equals(other.annotationType)) &&
110 (annotationType == null ? 0 : annotationType.hashCode())
    [all...]
ClassSpecification.java 38 public final String annotationType;
71 classSpecification.annotationType,
90 * @param annotationType the name of the class that must be an
110 String annotationType,
118 annotationType,
137 * @param annotationType the name of the class that must be an
159 String annotationType,
169 this.annotationType = annotationType;
226 (this.annotationType == null ? other.annotationType == null : this.annotationType.equals(other.annotat (…)
    [all...]
ClassSpecificationVisitorFactory.java 206 String annotationType = classSpecification.annotationType;
208 if (annotationType != null)
213 new AnnotationTypeFilter(annotationType,
460 if (memberSpecification.annotationType != null)
465 new AnnotationTypeFilter(memberSpecification.annotationType,
ConfigurationParser.java 506 String annotationType = null;
518 // annotationType =
554 annotationType =
642 annotationType,
    [all...]
  /external/javassist/src/main/javassist/bytecode/annotation/
AnnotationImpl.java 44 private transient Class annotationType;
51 JDK_ANNOTATION_TYPE_METHOD = clazz.getMethod("annotationType", (Class[])null);
96 if (annotationType == null) {
99 annotationType = classLoader.loadClass(typeName);
107 return annotationType;
123 * <code>AnnotationImpl</code>. The <code>annotationType()</code> method
140 else if ("annotationType".equals(name)
190 Method[] methods = annotationType.getDeclaredMethods();
250 Method[] methods = annotationType.getDeclaredMethods();
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
AnnotationsTest.java 118 result.add(annotation.annotationType());
  /cts/tools/signature-tools/src/signature/converter/doclet/
DocletToSigConverter.java 216 // AnnotationTypeDoc annotationType =
219 AnnotationTypeDoc annotationType = (AnnotationTypeDoc) classDoc;
223 for (AnnotationTypeElementDoc annotationElement : annotationType
550 AnnotationTypeDoc type = annotationDesc.annotationType();
553 if ("java.lang.annotation.Retention".equals(d.annotationType()
570 IClassReference annotationType = (IClassReference) convertTypeReference(
571 annotationDesc.annotationType());
572 a.setType(annotationType);
582 for (IAnnotationField field : annotationType.getClassDefinition()
  /external/proguard/src/proguard/gui/
ClassSpecificationDialog.java 382 String annotationType = classSpecification.annotationType;
401 annotationTypeTextField .setText(annotationType == null ? "" : ClassUtil.externalType(annotationType));
437 String annotationType = annotationTypeTextField.getText();
446 annotationType.equals("") ? null : ClassUtil.internalType(annotationType),
MemberSpecificationDialog.java 322 String annotationType = memberSpecification.annotationType;
327 annotationTypeTextField.setText(annotationType == null ? "" : ClassUtil.externalType(annotationType));
362 String annotationType = annotationTypeTextField.getText();
368 annotationType =
369 annotationType.equals("") ||
370 annotationType.equals("***") ? null : ClassUtil.internalType(annotationType);
398 new MemberSpecification(0, 0, annotationType, name, type)
    [all...]
  /prebuilt/common/ecj/
ecj.jar 
  /external/proguard/lib/
proguard.jar 
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/sdk/9/
android.jar 

Completed in 572 milliseconds