Package org.springmodules.lucene.search.factory

Examples of org.springmodules.lucene.search.factory.SimpleLuceneSearcher


   */
  public LuceneSearcher createSearcher() {
    //TODO: to be implemented
    //throw new IllegalAccessException("Not implemented!");
    Searcher nativeSearcher = new IndexSearcher(indexReader);
    return new SimpleLuceneSearcher(nativeSearcher);
  }
View Full Code Here

TOP

Related Classes of org.springmodules.lucene.search.factory.SimpleLuceneSearcher

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.