📄 catalogexchangelistener.java
字号:
/* * Created on 9-dic-2005 * * */package catalog_exchange;/** * @author magowiz * * *//** * Interface that defines a Catalog Exchange Listener, * who implements this interface must handle the event objects * that signal response gained * */public interface CatalogExchangeListener { /** * Method that handles events generated by a response from * another peer. * * @param answer event object of the response from peer */ public void processAnswer(CatServEvt answer); /** * Method that handles events generated by a response from * web. * * @param answer event object of the response from web */ public void processAnswer(CatWebEvt answer);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -