KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > javacoding > jspider > core > event > CoreEventVisitor


1 package net.javacoding.jspider.core.event;
2
3
4 import net.javacoding.jspider.core.event.impl.*;
5
6 import java.net.URL JavaDoc;
7
8
9 /**
10  *
11  * $Id: CoreEventVisitor.java,v 1.3 2003/02/13 20:12:53 vanrogu Exp $
12  *
13  * @author Günther Van Roey
14  */

15 public interface CoreEventVisitor {
16
17     public void visit(URL JavaDoc url, CoreEvent event);
18
19     public void visit(URL JavaDoc url, URLSpideredOkEvent event);
20
21     public void visit(URL JavaDoc url, URLSpideredErrorEvent event);
22
23     public void visit(URL JavaDoc url, ResourceParsedOkEvent event);
24
25     public void visit(URL JavaDoc url, ResourceParsedErrorEvent event);
26
27     public void visit(URL JavaDoc url, URLFoundEvent event);
28
29     public void visit(URL JavaDoc url, RobotsTXTSpideredOkEvent event);
30
31     public void visit(URL JavaDoc url, RobotsTXTSpideredErrorEvent event);
32
33     public void visit(URL JavaDoc url, RobotsTXTUnexistingEvent event);
34
35 }
36
Popular Tags