I'm using Lucene rc4 and JavaCC 2.1. I'm trying to compile Lucene without Ant, by tossing the files into Project Builder (Mac OS X). I ran JavaCC on StandardTokenizer.jj with the standard options, tossed the resulting files into the project, and now I'm running into a few errors:
1. StandardTokenizer.jj:173 is org.apache.lucene.analysis.Token next() throws IOException which is JavaCC'd into StandardTokenizer.java:26 as final public org.apache.lucene.analysis.Token next() throws ParseException, IOException which isn't a valid override. javac says >next() in org.apache.lucene.analysis.standard.StandardTokenizer >cannot override next() in org.apache.lucene.analysis.TokenStream; >overridden method does not throw >org.apache.lucene.analysis.standard.ParseException 2. StandardTokenizer.java:26 says token.beginColumn,token.endColumn and there are no such member variables. Am I totally missing something here? Avi -- Avi Drissman [EMAIL PROTECTED] Argh! This darn mailserver is trunca -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
