View Javadoc
1   /*
2   MissingDeprecated
3   violateExecutionOnNonTightHtml = (default)false
4   
5   
6   */
7   
8   /**
9    * Wrong header
10   */
11  // test
12  
13  /** @deprecated */
14  package com.puppycrawl.tools.checkstyle.checks.annotation.missingdeprecated;
15  // violation above 'Must.*@java.lang.Deprecated annotation.*@deprecated Javadoc tag.*description.'
16  
17  /**
18   * @deprecated do not use
19   */
20  @Deprecated
21  class InputMissingDeprecatedAbovePackage {
22  }