View Javadoc
1   package org.checkstyle.suppressionxpathfilter.illegaltoken;
2   
3   public class InputXpathIllegalTokenLabel {
4     public void myTest() {
5       outer: // warn
6       for (int i = 0; i < 5; i++) {
7         if (i == 1) {
8           break outer;
9         }
10      }
11    }
12  }