View Javadoc
1   package com.puppycrawl.tools.checkstyle.api.fullident;
2   
3   import java.lang.annotation.ElementType;
4   import java.lang.annotation.Target;
5   
6   public class InputFullIdentAnnotation {
7       public void method(final char @TypeAnnotation [] a) {
8       }
9   }
10  
11  @Target(ElementType.TYPE_USE)
12  @interface TypeAnnotation {
13  }