View Javadoc
1   /*
2   com.puppycrawl.tools.checkstyle.api.FileSetCheckTest$TestFileSetCheck
3   
4   */
5   
6   package com.puppycrawl.tools.checkstyle.api.fileset;
7   
8   public class InputFileSetIllegalTokens
9   {
10      public void methodWithPreviouslyIllegalTokens()
11      {
12          int i = 0;
13          switch (i)
14          {
15              default:
16                  i--;
17                  i++;
18                  break;
19          }
20      }
21  
22      public native void nativeMethod();
23  }