1 2 package org.apache.derby.impl.tools.ij; 3 4 public interface mtGrammarConstants { 5 6 int EOF = 0; 7 int SINGLE_LINE_SQLCOMMENT = 7; 8 int SINGLE_LINE_COMMENT = 8; 9 int SINGLE_LINE_COMMENT2 = 9; 10 int CASE = 10; 11 int FILE = 11; 12 int LAST = 12; 13 int INIT = 13; 14 int WEIGHT = 14; 15 int DESCRIPTION = 15; 16 int IGNOREERRORS = 16; 17 int PROPERTIES = 17; 18 int THREADS = 18; 19 int RUNTIME = 19; 20 int INT = 20; 21 int WORD = 21; 22 int STRING = 22; 23 int COMMA = 23; 24 int COLON = 24; 25 26 int DEFAULT = 0; 27 28 String [] tokenImage = { 29 "<EOF>", 30 "\" \"", 31 "\"\\t\"", 32 "\"\\r\\n\"", 33 "\"\\n\"", 34 "\"\\r\"", 35 "\"\\f\"", 36 "<SINGLE_LINE_SQLCOMMENT>", 37 "<SINGLE_LINE_COMMENT>", 38 "<SINGLE_LINE_COMMENT2>", 39 "\"case:\"", 40 "\"file:\"", 41 "\"last:\"", 42 "\"init:\"", 43 "\"weight:\"", 44 "\"description:\"", 45 "\"ignoreErrors:\"", 46 "\"properties:\"", 47 "\"threads:\"", 48 "\"runtime:\"", 49 "<INT>", 50 "<WORD>", 51 "<STRING>", 52 "\",\"", 53 "\":\"", 54 }; 55 56 } 57 | Popular Tags |