aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/doclets/tokentypesdoclet/InputTokenTypesDocletCorrect.java
blob: ab7de5c2e6ecc3c1e1d2249da3364086d14eec6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.puppycrawl.tools.checkstyle.doclets.tokentypesdoclet;

import com.puppycrawl.tools.checkstyle.grammars.GeneratedJavaTokenTypes;

public class InputTokenTypesDocletCorrect {

        /**
         * The end of file token.  This is the root node for the source
         * file.  It's children are an optional package definition, zero
         * or more import statements, and one or more class or interface
         * definitions.
         **/
        public static final int EOF = GeneratedJavaTokenTypes.EOF;
}