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