View Javadoc
1   /*
2   SummaryJavadoc
3   violateExecutionOnNonTightHtml = (default)false
4   forbiddenSummaryFragments = (default)^$
5   period =
6   
7   
8   */
9   
10  package com.puppycrawl.tools.checkstyle.checks.javadoc.summaryjavadoc;
11  
12  public class InputSummaryJavadocNoPeriod // ok
13  {
14      /**
15       * As of JDK 1.1, replaced by {@link #setBounds(int,int,int,int)}
16       */
17      void foo3() {}
18  
19      /**
20       * Blabla
21       */
22      void foo4() throws Exception {}
23  
24      /** An especially short bit of Javadoc */
25      void foo5() {}
26  
27      /**
28       * {@summary No Period in end}
29       */
30      void foo6(){}
31  }