EventSink.java
上传用户:qing5858
上传日期:2015-10-27
资源大小:6056k
文件大小:1k
- package net.javacoding.jspider.api.event;
- /**
- * Interface that will be implemented upon each class that will be used as an
- * event sink for JSpider API events.
- *
- * $Id: EventSink.java,v 1.3 2003/02/27 16:47:31 vanrogu Exp $
- *
- * @author G黱ther Van Roey
- */
- public interface EventSink {
- public void initialize ( );
- public void shutdown ( );
- /**
- * Notifies the event sink of a new event.
- * @param event the event that occurred
- */
- public void notify(JSpiderEvent event);
- }