I've never used project builder (netbeans on OSX), but you may want to try not including the .jj files.
--Peter On 4/24/02 8:02 AM, "Avi Drissman" <[EMAIL PROTECTED]> wrote: > 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 -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
