1 /* 2 OuterTypeFilename 3 4 5 */ 6 7 package com.puppycrawl.tools.checkstyle.checks.outertypefilename; 8 // violation below 'The name of the outer type and the file do not match.' 9 class Class1 { 10 public interface NestedInterface {} 11 public enum NestedEnum {} 12 class NestedClass {} 13 }