View Javadoc
1   package com.google.checkstyle.test.chapter4formatting.rule452indentcontinuationlines;
2   
3   /** some javadoc. */
4   public class InputIndentationCorrectNewChildren {
5   
6     private final StringBuffer filter =
7         new StringBuffer(
8             new CharSequence() {
9               @Override
10              public char charAt(int index) {
11                return 'A';
12              }
13  
14              public int length() {
15                return 1;
16              }
17  
18              public CharSequence subSequence(int start, int end) {
19                return this;
20              }
21  
22              public String toString() {
23                return "Foo";
24              }
25            });
26  }