View Javadoc
1   package org.checkstyle.suppressionxpathfilter.javadocmethod;
2   
3   /**
4    * Config:
5    */
6   public class InputXpathJavadocMethodTwo {
7   
8       /**
9        * Needs a param tag for x.
10       *
11       * @return identity
12       */
13      public int checkParam(int x) { //warn
14          return x;
15      }
16  
17  }