EventDispatcher.java
上传用户:qing5858
上传日期:2015-10-27
资源大小:6056k
文件大小:0k
源码类别:

搜索引擎

开发平台:

Java

  1. package net.javacoding.jspider.core.dispatch;
  2. import net.javacoding.jspider.api.event.JSpiderEvent;
  3. /**
  4.  *
  5.  * $Id: EventDispatcher.java,v 1.3 2003/02/27 16:47:31 vanrogu Exp $
  6.  *
  7.  * @author G黱ther Van Roey
  8.  */
  9. public interface EventDispatcher {
  10.     public void initialize ( );
  11.     public void shutdown ( );
  12.     public void dispatch(JSpiderEvent event);
  13. }