1   package com.puppycrawl.tools.checkstyle.checks.annotation.missingdeprecated;
2   
3   /**
4    * @deprecated
5    *  stuff
6    */
7   public class InputMissingDeprecatedBadDeprecated
8   {
9       /**
10       * @deprecated        stuff
11       */
12      protected InputMissingDeprecatedBadDeprecated() {
13  
14      }
15  
16      /**
17       * @deprecated stuff
18       */
19      public String toString() {
20          return "";
21      }
22  
23      /**
24       * @deprecated stuff
25       */
26      enum Rock {
27  
28          /**
29           * @deprecated stuff
30           */
31          Metallica
32      }
33  }
34  
35  /**
36   * @deprecated stuff
37   */
38  interface Foo1 {
39  
40      /**
41       * @deprecated stuff
42       */
43      interface Bar {
44  
45      }
46  }
47  
48  /**
49   * @deprecated stuff
50   */
51  @interface Bleh {
52  
53      /**
54       * @deprecated stuff
55       */
56      int bleh();
57  }