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

搜索引擎

开发平台:

Java

  1. package net.javacoding.jspider.core.event.impl;
  2. import net.javacoding.jspider.core.SpiderContext;
  3. import net.javacoding.jspider.core.event.CoreEventVisitor;
  4. import net.javacoding.jspider.api.model.Folder;
  5. import java.net.URL;
  6. /**
  7.  *
  8.  * $Id: URLFoundEvent.java,v 1.5 2003/04/09 17:08:04 vanrogu Exp $
  9.  *
  10.  * @author G黱ther Van Roey
  11.  */
  12. public class URLFoundEvent extends BaseCoreEventImpl {
  13.     protected URL url;
  14.     protected URL foundURL;
  15.     public URLFoundEvent(SpiderContext context, URL url, URL foundURL) {
  16.         super(context);
  17.         this.url = url;
  18.         this.foundURL = foundURL;
  19.     }
  20.     public URL getURL() {
  21.         return url;
  22.     }
  23.     public URL getFoundURL() {
  24.         return foundURL;
  25.     }
  26.     public void accept(URL url, CoreEventVisitor visitor) {
  27.         visitor.visit(url, this);
  28.     }
  29. }