On Monday 19 September 2005 18:24, Erik Hatcher wrote:
> So what's the deal with this? It looks like something is wrong with
> your environment if it cannot resolve java.io.Reader.
There once was a problem that the import statement for this was missing in
the .jj file and thus it's missing in
On Sep 19, 2005, at 11:03 AM, tirupathi reddy wrote:
C:\LUCENE-CURRENT\SOURCE\lucene-1.4.3>ant -Djavacc.home=c:/javacc
javacc
Buildfile: build.xml
init:
javacc-check:
javacc-StandardAnalyzer:
invoke-javacc:
[java] Java Compiler Compiler Version 3.2 (Parser Generator)
[java] (type "ja
Hello Erik,
The output from ant command is :
C:\LUCENE-CURRENT\SOURCE\lucene-1.4.3>ant
Buildfile: build.xml
init:
[mkdir] Created dir: C:\LUCENE-CURRENT\SOURCE\lucene-1.4.3\build
[mkdir] Created dir: C:\LUCENE-CURRENT\SOURCE\lucene-1.4.3\dist
compile-core:
[mkdir] Created dir: C:
On Sep 19, 2005, at 4:41 AM, tirupathi reddy wrote:
Hello,
I am using Lucene for for searching in my application.
My application needs prefix wildcard search also.
But Lucene doesn't support this. So I changed in the QueryParser.jj
file
FROM:
|
(<_TERM_CHAR> | ( [ "*", "?"
Hello,
I am using Lucene for for searching in my application.
My application needs prefix wildcard search also.
But Lucene doesn't support this. So I changed in the QueryParser.jj file
FROM:
|
(<_TERM_CHAR> | ( [ "*", "?" ] ))* >
To:
| | ( [ "*", "?" ] ))* >
And then I build