Package javax.help.search

Examples of javax.help.search.MergingSearchEngine


     * Explicitly changes the default (overriding what is in the HelpSet).
     *
     * @param search A SearchEngine instantiation.
     */
    public void setSearchEngine(SearchEngine search) {
  this.search = new MergingSearchEngine(search);
    }
View Full Code Here


    }


    public synchronized int doStartTag() {
  if (helpsearch == null) {
      helpsearch = new MergingSearchEngine(view);
      searchquery = helpsearch.createQuery();
      searchquery.addSearchListener(this);

      // Make sure all the subhelpsets have a search engine
      addSubHelpSets(view.getHelpSet());
View Full Code Here

TOP

Related Classes of javax.help.search.MergingSearchEngine

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.