HomeSort by relevance Sort by last modified time
    Searched refs:annotation (Results 76 - 100 of 2460) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/jsr305/ri/src/main/java/javax/annotation/meta/
TypeQualifierValidator.java 1 package javax.annotation.meta;
3 import java.lang.annotation.Annotation;
5 import javax.annotation.Nonnull;
7 public interface TypeQualifierValidator<A extends Annotation> {
12 * @param annotation
20 When forConstantValue(@Nonnull A annotation, Object value);
When.java 1 package javax.annotation.meta;
  /external/jsr305/sampleUses/src/main/java/java/sql/
ResultSetConcurrency.java 3 import java.lang.annotation.Documented;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
7 import javax.annotation.meta.TypeQualifier;
ResultSetHoldability.java 3 import java.lang.annotation.Documented;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
7 import javax.annotation.meta.TypeQualifier;
ResultSetType.java 3 import java.lang.annotation.Documented;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
7 import javax.annotation.meta.TypeQualifier;
  /external/proguard/examples/annotations/examples/
Applet.java 1 import proguard.annotation.*;
11 * The annotation will preserve the class and its essential methods.
  /frameworks/base/core/java/android/test/
FlakyTest.java 19 import java.lang.annotation.Retention;
20 import java.lang.annotation.RetentionPolicy;
21 import java.lang.annotation.Target;
22 import java.lang.annotation.ElementType;
25 * This annotation can be used on an {@link android.test.InstrumentationTestCase}'s
26 * test methods. When the annotation is present, the test method is re-executed if
UiThreadTest.java 19 import java.lang.annotation.Retention;
20 import java.lang.annotation.RetentionPolicy;
21 import java.lang.annotation.Target;
22 import java.lang.annotation.ElementType;
25 * This annotation can be used on an {@link InstrumentationTestCase}'s test methods.
26 * When the annotation is present, the test method is executed on the application's
28 * when this annotation is present.
  /frameworks/base/core/java/android/view/
RemotableViewMethod.java 19 import java.lang.annotation.ElementType;
20 import java.lang.annotation.Retention;
21 import java.lang.annotation.RetentionPolicy;
22 import java.lang.annotation.Target;
26 * This annotation indicates that a method on a subclass of View
  /libcore/dalvik/src/main/java/dalvik/annotation/
TestStatus.java 17 package dalvik.annotation;
TestInfo.java 17 package dalvik.annotation;
19 import java.lang.annotation.ElementType;
20 import java.lang.annotation.Retention;
21 import java.lang.annotation.RetentionPolicy;
22 import java.lang.annotation.Target;
25 * Defines an annotation for test methods that allow, among other things, to
TestTargetNew.java 17 package dalvik.annotation;
19 import java.lang.annotation.ElementType;
20 import java.lang.annotation.Retention;
21 import java.lang.annotation.RetentionPolicy;
22 import java.lang.annotation.Target;
25 * Defines an annotation used be used within the TestInfo annotation. It
  /libcore/luni/src/main/java/java/lang/
Override.java 19 import java.lang.annotation.ElementType;
20 import java.lang.annotation.Retention;
21 import java.lang.annotation.RetentionPolicy;
22 import java.lang.annotation.Target;
25 * Annotation type used to mark methods that override a method declaration in a
  /libcore/luni/src/main/java/java/lang/annotation/
RetentionPolicy.java 18 package java.lang.annotation;
21 * Defines an enumeration for annotation retention policies. Used in conjunction
22 * with the {@link Retention} annotation to specify an annotation's time-to-live
29 * Annotation is only available in the source code.
33 * Annotation is available in the source code and in the class file, but not
38 * Annotation is available in the source code, the class file and is
  /libcore/luni/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
TestAnnotation1.java 17 package org.apache.harmony.annotation.tests.java.lang.annotation;
19 import java.lang.annotation.Retention;
20 import java.lang.annotation.RetentionPolicy;
  /libcore/luni/src/test/java/tests/api/java/nio/charset/
Charset_SingleByte_x_IBM874.java 18 import dalvik.annotation.AndroidOnly;
19 import dalvik.annotation.TestLevel;
20 import dalvik.annotation.TestTargetClass;
21 import dalvik.annotation.TestTargetNew;
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/util/
WorkerThread.java 19 import java.lang.annotation.Target;
20 import java.lang.annotation.ElementType;
21 import java.lang.annotation.Retention;
22 import java.lang.annotation.RetentionPolicy;
26 * (or Event Dispatch Thread in Swing/AWT.) This annotation's sole purpose is to help
  /external/jsr305/ri/src/main/java/javax/annotation/
CheckReturnValue.java 1 package javax.annotation;
3 import java.lang.annotation.Documented;
4 import java.lang.annotation.ElementType;
5 import java.lang.annotation.Retention;
6 import java.lang.annotation.RetentionPolicy;
7 import java.lang.annotation.Target;
9 import javax.annotation.meta.When;
Nonnull.java 1 package javax.annotation;
3 import java.lang.annotation.Documented;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
7 import javax.annotation.meta.TypeQualifier;
8 import javax.annotation.meta.TypeQualifierValidator;
9 import javax.annotation.meta.When;
MatchesPattern.java 1 package javax.annotation;
3 import java.lang.annotation.Documented;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
8 import javax.annotation.meta.TypeQualifier;
9 import javax.annotation.meta.TypeQualifierValidator;
10 import javax.annotation.meta.When;
22 public When forConstantValue(MatchesPattern annotation, Object value) {
23 Pattern p = Pattern.compile(annotation.value(), annotation.flags())
    [all...]
  /external/proguard/src/proguard/classfile/attribute/annotation/visitor/
ElementValueVisitor.java 21 package proguard.classfile.attribute.annotation.visitor;
24 import proguard.classfile.attribute.annotation.*;
34 public void visitConstantElementValue( Clazz clazz, Annotation annotation, ConstantElementValue constantElementValue);
35 public void visitEnumConstantElementValue(Clazz clazz, Annotation annotation, EnumConstantElementValue enumConstantElementValue);
36 public void visitClassElementValue( Clazz clazz, Annotation annotation, ClassElementValue classElementValue);
37 public void visitAnnotationElementValue( Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue)
    [all...]
  /external/jsr305/sampleUses/src/main/java/edu/umd/cs/findbugs/
DottedClassName.java 3 import java.lang.annotation.Documented;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
7 import javax.annotation.meta.TypeQualifierNickname;
8 import javax.annotation.meta.When;
SlashedClassName.java 3 import java.lang.annotation.Documented;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
7 import javax.annotation.meta.TypeQualifier;
8 import javax.annotation.meta.When;
  /frameworks/base/core/java/android/annotation/
SdkConstant.java 17 package android.annotation;
19 import java.lang.annotation.Target;
20 import java.lang.annotation.ElementType;
21 import java.lang.annotation.Retention;
22 import java.lang.annotation.RetentionPolicy;
  /external/jsr305/sampleUses/src/main/java/
CreditCardNumber.java 1 import java.lang.annotation.Documented;
2 import java.lang.annotation.ElementType;
3 import java.lang.annotation.Retention;
4 import java.lang.annotation.RetentionPolicy;
6 import javax.annotation.MatchesPattern;
7 import javax.annotation.meta.TypeQualifier;
8 import javax.annotation.meta.TypeQualifierValidator;
9 import javax.annotation.meta.When;
18 public When forConstantValue(CreditCardNumber annotation, Object v) {

Completed in 1310 milliseconds

1 2 34 5 6 7 8 91011>>