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

搜索引擎

开发平台:

Java

  1. package net.javacoding.jspider.api.event.monitor;
  2. import net.javacoding.jspider.api.event.JSpiderEvent;
  3. /**
  4.  * $Id: MonitorEvent.java,v 1.2 2002/12/14 15:36:43 vanrogu Exp $
  5.  */
  6. public abstract class MonitorEvent extends JSpiderEvent {
  7.     public int getType() {
  8.         return JSpiderEvent.EVENT_TYPE_MONITORING;
  9.     }
  10.     public MonitorEvent ( ) {
  11.     }
  12. }