View Javadoc
1   package org.checkstyle.suppressionxpathfilter.annotationlocation;
2   
3   public class InputXpathAnnotationLocationMethod {
4        @MethodAnnotation("foo") void foo1() {}//warn
5   }
6   @interface MethodAnnotation {
7        String value();
8   }