View Javadoc
1   /*
2   JavadocStyle
3   scope = (default)private
4   excludeScope = (default)null
5   checkFirstSentence = false
6   checkEmptyJavadoc = (default)false
7   checkHtml = (default)true
8   tokens = (default)ANNOTATION_DEF, ANNOTATION_FIELD_DEF, CLASS_DEF, CTOR_DEF, \
9            ENUM_CONSTANT_DEF, ENUM_DEF, INTERFACE_DEF, METHOD_DEF, PACKAGE_DEF, \
10           VARIABLE_DEF, RECORD_DEF, COMPACT_CTOR_DEF
11  
12  
13  */
14  
15  package com.puppycrawl.tools.checkstyle.checks.javadoc.javadocstyle;
16  
17  public class InputJavadocStyleCheckOptionLowercaseProperty {
18  
19      /**
20       * <pre>
21       * somewhere and has a comment in the middle
22       * <!-- ignore this -->
23       * and ends afterwards
24       * </PRE>
25       */
26      private void toLowerCaseForSingleHTMLTag() {
27      }
28  
29      /**
30       * And This is ok.<BR>
31       * <CODE>lowercase</CODE>
32       */
33      public void allowedTAGToLowerCase() {
34      }
35  }