View Javadoc
1   package com.puppycrawl.tools.checkstyle.javadocpropertiesgenerator;
2   
3   public class InputJavadocPropertiesGeneratorEmptyJavadoc {
4   
5       // Singleline comment
6   
7       /**
8        * Not a javadoc comment.
9        */
10  
11      /**
12       *
13       */
14      public static final int CLASS_DEF = 0; // must have javadoc
15  
16      public static final int VARIABLE_DEF = 0; // must have javadoc
17  }