📄 catalogsearchservice.java
字号:
/* * 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -