View Javadoc
1   package org.checkstyle.suppressionxpathfilter.annotationlocation;
2   
3   public class InputXpathAnnotationLocationVariable {
4       @VariableAnnotation(value = "") public int b; //warn
5   }
6   @interface VariableAnnotation {
7       String value();
8   }