1   package com.puppycrawl.tools.checkstyle.checks.javadoc.javadocmethod;
2   
3   public class InputJavadocMethodsNotSkipWritten {
4       /**
5        * Description.
6        * 
7        * @param BAD
8        *            This param doesn't exist.
9        */
10      @MyAnnotation
11      public void InputJavadocMethodsNotSkipWritten() {
12      }
13  
14      /**
15       * Description.
16       * 
17       * @param BAD
18       *            This param doesn't exist.
19       */
20      @MyAnnotation
21      public void test() {
22      }
23  
24      /** Description. */
25      @MyAnnotation
26      public void test2() {
27      }
28  
29      /** Description. */
30      @MyAnnotation
31      public String test3(int a) throws Exception {
32          return "";
33      }
34  }