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