View Javadoc
1   /*
2   SummaryJavadoc
3   violateExecutionOnNonTightHtml = true
4   forbiddenSummaryFragments = .*
5   period =
6   
7   */
8   
9   package com.puppycrawl.tools.checkstyle.checks.javadoc.summaryjavadoc;
10  
11  // ok
12  public class InputSummaryJavadocTestForbiddenFragments2 {
13  
14      /**
15       * Returns {@link String} instance for the given module name.
16       * This implementation uses {@link #getModuleConfig(String)} method inside.
17       *
18       * @param moduleName module name.
19       * @return {@link String} instance for the given module name.
20       */
21      protected static String getModuleConfig(String moduleName) {
22          return getModuleConfig(moduleName);
23      }
24  }