View Javadoc
1   /*
2   MissingDeprecated
3   violateExecutionOnNonTightHtml = (default)false
4   
5   
6   */
7   
8   package com.puppycrawl.tools.checkstyle.checks.annotation.missingdeprecated;
9   
10  public class InputMissingDeprecatedMethod {
11  
12  
13      /**
14       * @deprecated
15       *
16       * @param comment
17       */
18      public void method(){ // violation '.*@java.lang.Deprecated annotation.*@deprecated.*'
19      }
20  
21  }