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  public class InputSummaryJavadocTestForbiddenFragments2 {
12  
13      /**
14       * Returns {@link String} instance for the given module name.
15       * This implementation uses {@link #getModuleConfig(String)} method inside.
16       *
17       * @param moduleName module name.
18       * @return {@link String} instance for the given module name.
19       */
20      protected static String getModuleConfig(String moduleName) {
21          return getModuleConfig(moduleName);
22      }
23  }