View Javadoc
1   /*
2   No config
3   
4   
5   */
6   
7   package com.puppycrawl.tools.checkstyle.checks.imports.avoidstaticimport;
8   
9   public class InputAvoidStaticImportNestedClass{
10      public static Integer zero=0;
11  
12      public static class InnerClass {
13          public static Integer one=1;
14      }
15  }