| java.lang.Object com.quadcap.http.client.LinkChecker
LinkChecker | public class LinkChecker implements DocumentHandler(Code) | | This class implements a simple link checker, following links
in the following tags:
- <A HREF="">
- <IMG SRC="">
- <FRAME SRC="">
|
base | String base(Code) | | uri of the document we're currently fetching and parsing
|
currentUrl | String currentUrl(Code) | | uri of the document we're currently fetching and parsing
|
links | DiGraph links(Code) | | directed graph of all links found so far (even bad ones...)
|
linksChecked | HashMap linksChecked(Code) | | uri -> status for completed links
|
urlBase | String urlBase(Code) | | base uri of the current document for relative href resolution
|
endDocument | public void endDocument()(Code) | | |
ignorableWhitespace | public void ignorableWhitespace(char[] ch, int off, int cnt) throws SAXException(Code) | | |
printBadLinks | public void printBadLinks()(Code) | | |
setDocumentLocator | public void setDocumentLocator(Locator locator)(Code) | | |
startDocument | public void startDocument()(Code) | | |
|
|