View Javadoc
1   package com.google.checkstyle.test.chapter4formatting.rule452indentcontinuationlines;
2   
3   import java.util.Iterator;
4   
5   /** some javadoc. */
6   public class InputIndentationCorrectClass implements Runnable, Cloneable {
7   
8     /** some javadoc. */
9     @Override
10    public void run() {
11      SecondClassWithLongLongLongLongName anon = new SecondClassWithLongLongLongLongName() {};
12  
13      SecondClassWithLongLongLongLongName anon2 = new SecondClassWithLongLongLongLongName() {};
14    }
15  
16    class InnerClass implements Iterable<String>, Cloneable {
17      @Override
18      public Iterator<String> iterator() {
19        return null;
20      }
21    }
22  
23    class InnerClass2 extends SecondClassReturnWithVeryVeryVeryLongName {
24      public InnerClass2(String string) {
25        super();
26        // OOOO Auto-generated constructor stub
27      }
28    }
29  
30    class SecondClassWithLongLongLongLongName extends InputIndentationCorrectClass {}
31  
32    class SecondClassReturnWithVeryVeryVeryLongName {}
33  }