* @return DOCUMENT ME!
*/
public HTMLCollection getAnchors() {
if (this.isHTMLDocument) {
if (anchorsCol != null) return anchorsCol;
return anchorsCol = new CHTMLCollection(createAnchorsCol());
}
return new CHTMLCollection(this.getElementsByTagName("a"));
} // end getAnchors()