View Javadoc
1   /*
2   AnnotationUseStyle
3   elementStyle = (default)compact_no_array
4   closingParens = (default)never
5   trailingArrayComma = (default)never
6   
7   
8   */
9   
10  package com.puppycrawl.tools.checkstyle.checks.annotation.annotationusestyle;
11  
12  import java.lang.annotation.Retention;
13  import java.lang.annotation.Target;
14  
15  public class InputAnnotationUseStyleParams
16  {
17      @Target({})
18      public @interface myAnn {
19  
20      }
21  }