Package net.sf.clairv.search.searcher

Examples of net.sf.clairv.search.searcher.DefaultHit


  }

  public Hit getHit(int index) {
    synchronized (docs) {
      Document doc = (Document)this.docs.get(index);
      return new DefaultHit(new LuceneDocument(doc), getText(doc), 1.0f);
    }
  }
View Full Code Here

TOP

Related Classes of net.sf.clairv.search.searcher.DefaultHit

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.