Skip to content

Commit 6fe8978

Browse files
Marcono1234simonresch
authored andcommitted
docs: document mutation annotation AppliesTo in Javadoc
1 parent e13aef0 commit 6fe8978

File tree

1 file changed

+2
-0
lines changed
  • src/main/java/com/code_intelligence/jazzer/mutation/utils

1 file changed

+2
-0
lines changed

src/main/java/com/code_intelligence/jazzer/mutation/utils/AppliesTo.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,14 @@
1919
import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
2020
import static java.lang.annotation.RetentionPolicy.RUNTIME;
2121

22+
import java.lang.annotation.Documented;
2223
import java.lang.annotation.Retention;
2324
import java.lang.annotation.Target;
2425

2526
/** A meta-annotation that limits the concrete types an annotation for type usages applies to. */
2627
@Target(ANNOTATION_TYPE)
2728
@Retention(RUNTIME)
29+
@Documented
2830
public @interface AppliesTo {
2931
/** The meta-annotated annotation can be applied to these classes. */
3032
Class<?>[] value() default {};

0 commit comments

Comments
 (0)