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 InputSummaryJavadocJapanesePeriod {
13  
14      /**
15       * Summary sentence ending with correct period and no following whitespace。The Japanese
16       * period has whitespace built in!
17       */
18      void foo1() {}
19  
20      /**
21       * 要約文。別の文。
22       */
23      void foo2() {}
24  }