blob: 4a26a492e2ef85f03ee4cb27937c4d8aa807ca9b [file] [log] [blame]
Jesse Wilson66e84b92009-12-10 17:45:56 -08001package javax.annotation;
2
3import java.lang.annotation.Documented;
4import java.lang.annotation.Retention;
5import java.lang.annotation.RetentionPolicy;
6
7import javax.annotation.meta.TypeQualifier;
8import javax.annotation.meta.When;
9
10@Documented
11@TypeQualifier
12@Retention(RetentionPolicy.RUNTIME)
13public @interface Untainted {
14 When when() default When.ALWAYS;
15}