View Javadoc
1   /*
2   AnnotationUseStyle
3   elementStyle = (default)compact_no_array
4   closingParens = ignore
5   trailingArrayComma = ignore
6   
7   
8   */
9   
10  package com.puppycrawl.tools.checkstyle.checks.annotation.annotationusestyle;
11  
12  @interface InputAnnotationUseStyle {
13      @Another32(value={"foo", "bar"}) //expanded
14      DOGS[] pooches();
15  }
16  
17  
18  @interface Another32 {
19      String[] value();
20  }