View Javadoc
1   package org.checkstyle.suppressionxpathfilter.executablestatementcount;
2   
3   public class InputXpathExecutableStatementCountDefault {
4       public void ElseIfLadder() { // warn
5           if (System.currentTimeMillis() == 0) {
6           } else {
7               if (System.currentTimeMillis() == 0) {
8               } else {
9                   if (System.currentTimeMillis() == 0) {
10                  }
11              }
12  
13              if (System.currentTimeMillis() == 0) {
14              }
15          }
16      }
17  }