View Javadoc
1   package org.checkstyle.suppressionxpathfilter.fallthrough;
2   
3   public class InputXpathFallThrough {
4       public void test() {
5           int id = 0;
6           switch (id) {
7               case 0: break;
8               case 1: if (1 == 0) {
9                   break;
10              };
11              case 2: break; //warn
12          }
13      }
14  }