View Javadoc
1   package org.checkstyle.suppressionxpathfilter.annotationlocation;
2   
3   import java.lang.annotation.ElementType;
4   import java.lang.annotation.Target;
5   
6   @Annotation("bar") @interface InputXpathAnnotationLocationAnnotation {//warn
7   
8   }
9   
10  @Target({ElementType.ANNOTATION_TYPE, ElementType.METHOD})
11  @interface Annotation  {
12  
13      String value() default "";
14  
15  }