Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for isInInterfaceOrAnnotationBlock (0.1 seconds)

  1. build-conventions/src/main/java/org/elasticsearch/gradle/internal/checkstyle/MissingJavadocTypeCheck.java

         * @param ast a given node.
         * @return whether we should check a given node.
         */
        private boolean shouldCheck(final DetailAST ast) {
            final Scope customScope;
    
            if (ScopeUtil.isInInterfaceOrAnnotationBlock(ast)) {
                customScope = Scope.PUBLIC;
            } else {
                final DetailAST mods = ast.findFirstToken(TokenTypes.MODIFIERS);
                customScope = ScopeUtil.getScopeFromMods(mods);
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jun 10 23:06:44 GMT 2021
    - 5.5K bytes
    - Click Count (0)
Back to Top