View Javadoc
1   /*
2   JavadocStyle
3   scope = public
4   excludeScope = (default)null
5   checkFirstSentence = (default)true
6   endOfSentenceFormat = (default)([.?!][ \t\n\r\f<])|([.?!]$)
7   checkEmptyJavadoc = true
8   checkHtml = (default)true
9   tokens = (default)ANNOTATION_DEF, ANNOTATION_FIELD_DEF, CLASS_DEF, CTOR_DEF, \
10           ENUM_CONSTANT_DEF, ENUM_DEF, INTERFACE_DEF, METHOD_DEF, PACKAGE_DEF, \
11           VARIABLE_DEF, RECORD_DEF, COMPACT_CTOR_DEF
12  
13  
14  */
15  
16  package com.puppycrawl.tools.checkstyle.checks.javadoc.javadocstyle;
17  
18  public interface InputJavadocStyleInterfaceMemberScopeIsPublic {
19  
20      // violation below 'Javadoc has empty description section'
21      /** */
22      enum Enum {
23  
24          // violation below 'Javadoc has empty description section'
25          /** */
26          CONSTANT(0);
27  
28          /** */
29          final int value;
30  
31          /** */
32          Enum(int value) {
33              this.value = value;
34          }
35  
36          /** */
37          void method() {
38          }
39  
40      }
41  
42  }