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