OSDN Git Service

AI 143467: Bringing archive down to zero failures and
[android-x86/dalvik.git] / libcore / dalvik / src / test / java / dalvik / annotation / KnownFailure.java
1 package dalvik.annotation;
2
3 import java.lang.annotation.ElementType;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
6 import java.lang.annotation.Target;
7
8 @Retention(RetentionPolicy.RUNTIME)
9 @Target({ ElementType.METHOD })
10 public @interface KnownFailure {
11
12     /**
13      * Plain text reason for adding this annotation.
14      */
15     String value();
16
17 }