1 2 20 21 22 package org.apache.cayenne.wocompat.parser; 23 24 public interface ParserConstants { 25 26 int EOF = 0; 27 int INT = 5; 28 int FLOAT = 6; 29 int STRING = 17; 30 int QUOTED_STRING = 30; 31 32 int DEFAULT = 0; 33 int WithinComment = 1; 34 int WithinQuotedString = 2; 35 36 String [] tokenImage = { 37 "<EOF>", 38 "\" \"", 39 "\"\\r\"", 40 "\"\\n\"", 41 "\"\\t\"", 42 "<INT>", 43 "<FLOAT>", 44 "\"=\"", 45 "\"(\"", 46 "\")\"", 47 "\"{\"", 48 "\"}\"", 49 "\",\"", 50 "\";\"", 51 "\"//\"", 52 "<token of kind 15>", 53 "<token of kind 16>", 54 "<STRING>", 55 "\"\\\"\"", 56 "<token of kind 19>", 57 "\"\\\\\\\\\"", 58 "\"\\\\a\"", 59 "\"\\\\b\"", 60 "\"\\\\t\"", 61 "\"\\\\n\"", 62 "\"\\\\v\"", 63 "\"\\\\f\"", 64 "\"\\\\\\\"\"", 65 "<token of kind 28>", 66 "<token of kind 29>", 67 "\"\\\"\"", 68 }; 69 70 } 71 | Popular Tags |