catalogsearchservice.java

来自「基于jxta的文件共享和聊天系统源代码,下载下来分析吧」· Java 代码 · 共 37 行

JAVA
37
字号
/* * Created on 12-nov-2005 * *   *//** * @author magowiz * */package catalog_search;import net.jxta.service.Service;import gui.MainWindow;/** * Interface that describes the Catalog Search Service, a Service that  * allow a peer to search a download item from a catalog  * */public interface CatalogSearchService extends Service{		public void addListener(Handler listener);	/**     * Remove a given listener object from the service. Once removed,      * a listener will no longer be notified when a new ExampleResponseMsg     * response arrives.     *     * @param   listener the listener object to unregister.     */    public void removeListener(Handler listener);        public void search(String t, String d,String []c,int qid,MainWindow mw,boolean ow,boolean op);	   }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?