View Javadoc
1   package org.checkstyle.suppressionxpathfilter.indentation;
2   
3   public class InputXpathIndentationSwitchCase {
4       void test() {
5           int key = 5;
6           switch (key) {
7           case 1: // warn
8                   break;
9           }
10      }
11  }