View Javadoc
1   package org.checkstyle.suppressionxpathfilter.visibilitymodifier;
2   
3   public class InputXpathVisibilityModifierAnnotation {
4       @java.lang.Deprecated
5       String annotatedString; // warn
6   
7       @Deprecated
8       String shortCustomAnnotated;
9   }