Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for JavadocMethod (0.17 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle-api.xml

                <!-- Allow the use of unrecognized tags like @apiNote -->
                <property name="allowUnknownTags" value="true"/>
            </module>
    
            <!-- TODO - switch this on -->
            <!--<module name="JavadocMethod">-->
                <!--<property name="scope" value="package"/>-->
            <!--</module>-->
    
        </module>
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Nov 17 23:20:14 GMT 2022
    - 1.6K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/resources/checkstyle_ide_fragment.xml

            <property name="severity" value="warning"/>
            <message key="javadoc.missing" value="Types should explain their purpose" />
        </module>
    
        <!-- Public methods must have JavaDoc -->
        <module name="JavadocMethod">
            <property name="severity" value="warning"/>
            <property name="accessModifiers" value="public"/>
        </module>
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jul 21 18:58:39 GMT 2021
    - 1.9K bytes
    - Click Count (0)
Back to Top