View Javadoc
1   package com.puppycrawl.tools.checkstyle.xpath.xpathquerygenerator;
2   
3   public class InputXpathQueryGenerator4 {
4       void methodFallThruCustomWords(int i, int j, boolean cond) {
5           while (true) {
6               switch (i){
7                   case 0:
8                       i++;
9                       break;
10                  default:
11                      i++;
12              }
13          }
14      }
15  }