blob: 0f481e6ab5662765061378f05602fdac2e1373f7 [file] [log] [blame]
package org.checkerframework.checker.tainting.qual;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import org.checkerframework.framework.qual.PolymorphicQualifier;
/**
* A polymorphic qualifier for the Tainting type system.
*
* @checker_framework.manual #tainting-checker Tainting Checker
* @checker_framework.manual #qualifier-polymorphism Qualifier polymorphism
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
@PolymorphicQualifier(Tainted.class)
public @interface PolyTainted {}