View Javadoc
1   package org.checkstyle.suppressionxpathfilter.javadocmethod;
2   
3   /**
4    * Config:
5    */
6   public class InputXpathJavadocMethodThree {
7   
8       /**
9        * Needs a param tag for T.
10       *
11       * @param x the input
12       * @return hashcode of x
13       */
14      public <T> int checkTypeParam(T x) { //warn
15          return x.hashCode();
16      }
17  
18  }