View Javadoc
1   /*
2   SummaryJavadoc
3   violateExecutionOnNonTightHtml = true
4   forbiddenSummaryFragments = ^Returns the customer ID. This method returns. $
5   period = .
6   
7   */
8   
9   package com.puppycrawl.tools.checkstyle.checks.javadoc.summaryjavadoc;
10  
11  public class InputSummaryJavadoc2 {
12  
13      // violation 2 lines below 'Forbidden summary fragment'
14      /**
15       * {@summary Returns the customer ID.
16       *  This method returns. }
17       */
18      public void foo() {
19      }
20  }