Package org.jmule.core.searchmanager

Examples of org.jmule.core.searchmanager.SearchManager


        search_query.setMaximalSize(maxFileSize);
      }
       
    }
   
    SearchManager manager = _core.getSearchManager();
    manager.search(search_query);
   
    final SearchResultTab tab = new SearchResultTab(search_query_tab_list,search_query,_core);
   
    search_query_tab_list.setSelection(tab.getSearchTab());
   
View Full Code Here


   
  }
 
  void tabClosed(SearchResultTab tab) {
    search_tabs.remove(tab);
    SearchManager manager = _core.getSearchManager();
    manager.removeSearch(tab.getSerchQuery());
  }
View Full Code Here

    // notifies that the download manager has been started
    notifyComponentStarted(servers_manager);
   
    //servers_manager.startUDPQuery();
   
    SearchManager search_manager = SearchManagerSingleton.getInstance();
   
    search_manager.initialize();
   
    search_manager.start();
   
    notifyComponentStarted(search_manager);
   
    JKadManagerSingleton.getInstance().initialize();
    try {
View Full Code Here

   
    JKadManager jkad = getJKadManager();
    if (!jkad.isDisconnected())
      jkad.disconnect();
   
    SearchManager search_manager = SearchManagerSingleton.getInstance();
   
    search_manager.shutdown();
   
    notifyComponentStopped(search_manager);
   
    ServerManagerSingleton.getInstance().shutdown();
   
View Full Code Here

TOP

Related Classes of org.jmule.core.searchmanager.SearchManager

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.