View Javadoc
1   /*xml
2   <module name="Checker">
3     <module name="TreeWalker">
4       <module name="ParameterName"/>
5     </module>
6   </module>
7   */
8   
9   package com.puppycrawl.tools.checkstyle.checks.naming.parametername;
10  
11  // xdoc section -- start
12  class Example1 {
13    void method1(int v1) {}
14    void method2(int V2) {} // violation
15  }
16  // xdoc section -- end