View Javadoc
1   /*xml
2   <module name="Checker">
3     <module name="FileLength"/>
4   </module>
5   */
6   
7   package com.puppycrawl.tools.checkstyle.checks.sizes.filelength;
8   
9   // xdoc section -- start
10  public class Example1 {
11    public void myTest() {
12      // small class less than 2000 lines
13      String test = "Some content";
14    }
15  }
16  // xdoc section -- end