01: package bdd.search.spider;
02:
03: /** Written by Tim Macinta 1997 <br>
04: * Distributed under the GNU Public License
05: * (a copy of which is enclosed with the source). <br>
06: * <br>
07: * A LinkExtractor should be able to extract the hyperlinks from
08: * a given file. Each call to nextElement() will return an URL.
09: */
10:
11: public interface LinkExtractor extends java.util.Enumeration {
12: }
|