1   package com.puppycrawl.tools.checkstyle.utils.blockcommentposition;
2   
3   public class InputBlockCommentPositionOnMethod {
4       /**
5        * I'm a javadoc
6        */
7       int method(){
8           return 0;
9       }
10  
11      /**
12       * I'm a javadoc
13       */
14      public int method1(){
15          return 0;
16      }
17  
18      /**
19       * I'm a javadoc
20       */
21      @Deprecated
22      int method2(){
23          return 0;
24      }
25  
26      /**
27       * I'm a javadoc
28       */
29      java.lang.String method3(){
30          return null;
31      }
32  
33      /**
34       * I'm a javadoc
35       */
36      <T> T method4(T t){
37          return null;
38      }
39  
40      /**
41       * I'm a javadoc
42       */
43      String[] method5(){
44          return null;
45      }
46  }