1   package com.google.checkstyle.test.chapter3filestructure.rule341onetoplevel;
2   public class InputOneTopLevelClassGood //ok
3   {
4       public InputOneTopLevelClassGood() throws CloneNotSupportedException
5       {
6           super.equals(new String());
7           super.clone();
8       }
9   
10      public Object clone() throws CloneNotSupportedException
11      {
12          return super.clone();
13      }
14  
15      public void method() throws CloneNotSupportedException
16      {
17          super.clone();
18      }
19  
20      {
21          super.clone();
22      }
23  }