View Javadoc
1   package org.checkstyle.suppressionxpathfilter.annotationlocation;
2   
3   public class InputXpathAnnotationLocationCTOR {
4       @CTORAnnotation(value = "") public InputXpathAnnotationLocationCTOR()//warn
5       {
6           // comment
7       }
8   }
9   
10  @interface CTORAnnotation {
11      String value();
12  }