1 2 package com.openinventions.webappfilter.processor.xpathexpression; 3 4 public interface XPathExpressionParserConstants { 5 6 int EOF = 0; 7 int DOUBLE = 5; 8 int LONG = 6; 9 int ELEMENT = 7; 10 int STRING = 8; 11 int DIGIT = 9; 12 13 int DEFAULT = 0; 14 15 String [] tokenImage = { 16 "<EOF>", 17 "\" \"", 18 "\"\\n\"", 19 "\"\\r\"", 20 "\"\\t\"", 21 "<DOUBLE>", 22 "<LONG>", 23 "<ELEMENT>", 24 "<STRING>", 25 "<DIGIT>", 26 "\"+\"", 27 "\"-\"", 28 "\"<\"", 29 "\"<=\"", 30 "\">\"", 31 "\">=\"", 32 "\"==\"", 33 "\"(\"", 34 "\")\"", 35 }; 36 37 } 38 | Popular Tags |