View Javadoc
1   package com.puppycrawl.tools.checkstyle.javadocpropertiesgenerator;
2   
3   public class InputJavadocPropertiesGeneratorGetFirstJavadocSentence {
4   
5       // Test getFirstJavadocSentence with SingleLineComment above javadoc.
6       // This test case will be helpful to test the loop.
7       // We can ensure that we print the correct javadoc no matter how many
8       // tokens are as a first child of MODIFIERS.
9       /**
10       * First Javadoc Sentence.
11       */
12      public static final int EOF1 = 1;
13  }