View Javadoc
1   /*
2   OuterTypeFilename
3   
4   
5   */
6   
7   package com.puppycrawl.tools.checkstyle.checks.outertypefilename;
8   
9   class Class1 { // violation
10      public interface NestedInterface {}
11      public enum NestedEnum {}
12      class NestedClass {}
13  }