KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > micronova > util > cc > mime > ParserConstants


1 /* Generated By:JavaCC: Do not edit this line. ParserConstants.java */
2 package com.micronova.util.cc.mime;
3
4 public interface ParserConstants {
5
6   int EOF = 0;
7   int WHITESPACE = 1;
8   int TYPESEPARATOR = 2;
9   int SEMICOLON = 3;
10   int EQUAL = 4;
11   int QUOTED = 5;
12   int MIMETOKEN = 6;
13
14   int DEFAULT = 0;
15
16   String JavaDoc[] tokenImage = {
17     "<EOF>",
18     "<WHITESPACE>",
19     "<TYPESEPARATOR>",
20     "<SEMICOLON>",
21     "<EQUAL>",
22     "<QUOTED>",
23     "<MIMETOKEN>",
24   };
25
26 }
27
Popular Tags