1 package org.checkstyle.suppressionxpathfilter.redundantmodifier; 2 3 public abstract interface InputXpathRedundantModifierInterface { 4 5 public void m(); //warn 6 public int x = 0; 7 8 static enum E { 9 A, B, C 10 } 11 }