View Javadoc
1   /*xml
2   <module name="Checker">
3     <module name="RegexpSingleline">
4       <property name="format" value="^[ ]*\* This file is copyrighted"/>
5       <property name="minimum" value="1"/>
6       <!--  Need to specify a maximum, so 10 times is more than enough. -->
7       <property name="maximum" value="10"/>
8     </module>
9   </module>
10  */
11  package com.puppycrawl.tools.checkstyle.checks.regexp.regexpsingleline;
12  
13  // xdoc section -- start
14  /**
15  * This file is copyrighted under CC.
16  */
17  public class Example4 {}
18  // xdoc section -- end