Package org.eclipse.help.internal.search

Examples of org.eclipse.help.internal.search.SearchResults


    try {
      SearchProgressMonitor pm = SearchProgressMonitor
          .getProgressMonitor(getLocale());
      if (pm.isDone()) {
        this.indexCompletion = 100;
        SearchResults results = createHitCollector();
        BaseHelpSystem.getSearchManager().search(createSearchQuery(),
            results, pm);
        hits = results.getSearchHits();
        if (hits == null) {
          HelpWebappPlugin
              .logWarning("No search results returned.  Help index is in use."); //$NON-NLS-1$
        }
        return;
View Full Code Here


          maxHits = clientmaxHits;
        }
      } catch (NumberFormatException nfe) {
      }
    }
    return new SearchResults(workingSets, maxHits, getLocale());
  }
View Full Code Here

TOP

Related Classes of org.eclipse.help.internal.search.SearchResults

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.