Package com.sun.xmlsearch.xml.qe

Examples of com.sun.xmlsearch.xml.qe.QueryHitData


  for (int i = 0; i < terms.length; i++)
      if (matches[i << 1] > 0)
    terms[i] = fetch(matches[i << 1]);
  // build the resulting data packet
  final int document = hit.getDocument();
  QueryHitData result = new QueryHitData(hit.getPenalty(),
                 documentName(document),
                 terms);
  // fill out the remaining data: xPath locations of terms
  _contextTables.setMicroindex(document);
  _contextTables.resetContextSearch();
View Full Code Here


  for (int i = 0; i < terms.length; i++)
      if (matches[i << 1] > 0)
    terms[i] = fetch(matches[i << 1]);
  // build the resulting data packet
  final int document = hit.getDocument();
  QueryHitData result = new QueryHitData(hit.getPenalty(),
                 documentName(document),
                 terms);
  // fill out the remaining data: xPath locations of terms
  _contextTables.setMicroindex(document);
  _contextTables.resetContextSearch();
View Full Code Here

TOP

Related Classes of com.sun.xmlsearch.xml.qe.QueryHitData

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.