We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
AppliesTo
1 parent e13aef0 commit 6fe8978Copy full SHA for 6fe8978
src/main/java/com/code_intelligence/jazzer/mutation/utils/AppliesTo.java
@@ -19,12 +19,14 @@
19
import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
20
import static java.lang.annotation.RetentionPolicy.RUNTIME;
21
22
+import java.lang.annotation.Documented;
23
import java.lang.annotation.Retention;
24
import java.lang.annotation.Target;
25
26
/** A meta-annotation that limits the concrete types an annotation for type usages applies to. */
27
@Target(ANNOTATION_TYPE)
28
@Retention(RUNTIME)
29
+@Documented
30
public @interface AppliesTo {
31
/** The meta-annotated annotation can be applied to these classes. */
32
Class<?>[] value() default {};
0 commit comments