View Javadoc
1   package com.puppycrawl.tools.checkstyle.grammar.antlr4;
2   
3   import java.lang.annotation.ElementType;
4   import java.lang.annotation.Repeatable;
5   import java.lang.annotation.Target;
6   
7   /**
8    * This is not a test-input. Actual test input is in the file package-info.java.
9    */
10  
11  @Target(ElementType.PACKAGE)
12  @interface PackageAnnotations {
13  
14      PackageAnnotation[] value();
15  
16  }
17  
18  @Repeatable(PackageAnnotations.class)
19  @Target(ElementType.PACKAGE)
20  @interface PackageAnnotation  {
21  
22      String value() default  "";
23  
24  }