X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Forg%2Fz3950%2Fzing%2Fcql%2FCQLLexer.java;h=2cb0369e282b490c3f09763642e5702ef7acf1cc;hb=394625a21876d096000c4940049305c27de90321;hp=8ae508572dcb6095fb8d81d6987ace16c2b142f8;hpb=1b33e1aa62c7f3214383648abc99fedcf950977a;p=cql-java-moved-to-github.git diff --git a/src/org/z3950/zing/cql/CQLLexer.java b/src/org/z3950/zing/cql/CQLLexer.java index 8ae5085..2cb0369 100644 --- a/src/org/z3950/zing/cql/CQLLexer.java +++ b/src/org/z3950/zing/cql/CQLLexer.java @@ -1,4 +1,4 @@ -// $Id: CQLLexer.java,v 1.5 2002-11-14 22:04:16 mike Exp $ +// $Id: CQLLexer.java,v 1.6 2002-11-17 23:29:02 mike Exp $ package org.z3950.zing.cql; import java.io.StreamTokenizer; @@ -36,6 +36,7 @@ class CQLLexer extends StreamTokenizer { static int TT_FUZZY = 1017; // The "fuzzy" relation modifier static int TT_STEM = 1018; // The "stem" relation modifier static int TT_SCR = 1019; // The server choice relation + static int TT_PHONETIC = 1020; // The "phonetic" relation modifier // Support for keywords. It would be nice to compile this linear // list into a Hashtable, but it's hard to store ints as hash @@ -69,6 +70,7 @@ class CQLLexer extends StreamTokenizer { new Keyword(TT_FUZZY, "fuzzy"), new Keyword(TT_STEM, "stem"), new Keyword(TT_SCR, "scr"), + new Keyword(TT_PHONETIC, "phonetic"), }; // For halfDecentPushBack() and the code at the top of nextToken()