Searched defs:getAnnotation (Results 1 - 25 of 66) sorted by relevance

123

/external/guice/core/src/com/google/inject/spi/
H A DProvidesMethodBinding.java49 Annotation getAnnotation(); method in interface:ProvidesMethodBinding
/external/junit/src/main/java/org/junit/runners/model/
H A DAnnotatable.java19 <T extends Annotation> T getAnnotation(Class<T> annotationType); method in interface:Annotatable
H A DFrameworkField.java34 public <T extends Annotation> T getAnnotation(Class<T> annotationType) { method in class:FrameworkField
35 return field.getAnnotation(annotationType);
H A DFrameworkMethod.java194 public <T extends Annotation> T getAnnotation(Class<T> annotationType) { method in class:FrameworkMethod
195 return method.getAnnotation(annotationType);
H A DTestClass.java218 public <T extends Annotation> T getAnnotation(Class<T> annotationType) { method in class:TestClass
222 return clazz.getAnnotation(annotationType);
/external/annotation-tools/scene-lib/src/type/
H A DType.java54 public String getAnnotation(int index) { method in class:Type
H A DBoundedType.java12 * Calling {@link #addAnnotation(String)}, {@link #getAnnotation(int)}, or
114 public String getAnnotation(int index) { method in class:BoundedType
/external/desugar/java/com/google/devtools/common/options/processor/
H A DProcessorUtils.java32 static AnnotationMirror getAnnotation( method in class:ProcessorUtils
/external/junit-params/src/main/java/junitparams/internal/annotation/
H A DFrameworkMethodAnnotations.java27 public <T extends Annotation> T getAnnotation(Class<T> annotationType) { method in class:FrameworkMethodAnnotations
28 return frameworkMethod.getAnnotation(annotationType);
32 return getAnnotation(annotation) != null;
40 CustomParameters customParameters = frameworkMethod.getAnnotation(CustomParameters.class);
46 customParameters = annotation.annotationType().getAnnotation(CustomParameters.class);
/external/vogar/src/vogar/target/junit/
H A DVogarBlockJUnit4ClassRunner.java136 public <T extends Annotation> T getAnnotation(Class<T> annotationType) { method in class:VogarBlockJUnit4ClassRunner.MissingFrameworkMethod
/external/annotation-tools/annotation-file-utilities/src/annotator/find/
H A DAnnotationInsertion.java107 public String getAnnotation() { method in class:AnnotationInsertion
/external/guava/guava/src/com/google/common/reflect/
H A DParameter.java66 return getAnnotation(annotationType) != null;
71 public <A extends Annotation> A getAnnotation(Class<A> annotationType) { method in class:Parameter
H A DElement.java56 @Override public final <A extends Annotation> A getAnnotation(Class<A> annotationClass) { method in class:Element
57 return accessibleObject.getAnnotation(annotationClass);
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/nodeTypes/
H A DNodeWithAnnotations.java47 default AnnotationExpr getAnnotation(int i) { method in interface:NodeWithAnnotations
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/android/
H A DAccessibilityUtil.java60 AccessibilityChecks classChecksAnnotation = getAnnotation();
76 return checkView(view, getAnnotation());
225 private static AccessibilityChecks getAnnotation() { method in class:AccessibilityUtil
236 classChecksAnnotation = method.getAnnotation(AccessibilityChecks.class);
238 classChecksAnnotation = clazz.getAnnotation(AccessibilityChecks.class);
/external/guice/core/src/com/google/inject/
H A DKey.java182 public final Annotation getAnnotation() { method in class:Key
183 return annotationStrategy.getAnnotation();
191 Annotation annotation = annotationStrategy.getAnnotation();
356 Annotation getAnnotation(); method in interface:Key.AnnotationStrategy
418 public Annotation getAnnotation() { method in class:Key.NullAnnotationStrategy
448 public Annotation getAnnotation() { method in class:Key.AnnotationInstanceStrategy
495 public Annotation getAnnotation() { method in class:Key.AnnotationTypeStrategy
/external/guice/core/src/com/google/inject/internal/
H A DProviderMethod.java143 public Annotation getAnnotation() { method in class:ProviderMethod
/external/javassist/src/main/javassist/bytecode/annotation/
H A DAnnotationImpl.java115 public Annotation getAnnotation() { method in class:AnnotationImpl
/external/junit/src/main/java/org/junit/experimental/theories/
H A DParameterSignature.java99 return getAnnotation(type) != null;
126 public <T extends Annotation> T getAnnotation(Class<T> annotationType) { method in class:ParameterSignature
/external/junit-params/src/main/java/junitparams/internal/
H A DTestMethod.java100 public <T extends Annotation> T getAnnotation(Class<T> annotationType) { method in class:TestMethod
101 return frameworkMethodAnnotations.getAnnotation(annotationType);
/external/javassist/src/main/javassist/
H A DCtMember.java33 public Object getAnnotation(Class clz) method in class:CtMember.Cache
227 public abstract Object getAnnotation(Class clz) throws ClassNotFoundException; method in class:CtMember
H A DCtBehavior.java178 public Object getAnnotation(Class clz) throws ClassNotFoundException { method in class:CtBehavior
/external/junit/src/main/java/org/junit/runner/
H A DDescription.java259 public <T extends Annotation> T getAnnotation(Class<T> annotationType) { method in class:Description
/external/annotation-tools/scene-lib/test/annotations/tests/executable/
H A DTestSceneLib.java339 private static Annotation getAnnotation(Set<Annotation> annos, String name) { method in class:TestSceneLib
391 Annotation a3_2 = getAnnotation(clazz2.tlAnnotationsHere, "foo.CombinedAnno");
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/type/
H A DType.java80 public AnnotationExpr getAnnotation(int i) { method in class:Type

Completed in 3825 milliseconds

123