View Javadoc
1   package org.checkstyle.suppressionxpathfilter.staticvariablename;
2   
3   public class InputXpathStaticVariableName {
4   
5        public int num1; // OK
6        public static int NUM2; // warn
7   }