View Javadoc
1   package com.puppycrawl.tools.checkstyle.javadocpropertiesgenerator;
2   
3   public final class InputJavadocPropertiesGeneratorNotConstants {
4   
5       /**
6        * The end of file token.
7        **/
8       public final int EOF = 0; // must be static
9   
10      /**
11       * Modifiers for type, method, and field declarations.
12       **/
13      static final int MODIFIERS = 1; // must be public
14  
15      /**
16       * An object block.
17       **/
18      public static int OBJBLOCK = MODIFIERS; // must be final
19  
20      /**
21       * A list of statements.
22       **/
23      public static final double SLIST = 3; // must be int
24  
25      /**
26       * A static initialization block.
27       **/
28      public static final @Deprecated int[] STATIC_INIT = null; // must be int
29  
30      /**
31       * Not a field.
32       **/
33      public static final int method() { // must be field
34          return OBJBLOCK;
35      }
36  }