name
getLinks ( )
import prohtml.*;

HtmlTree htmlTree;

void setup(){
  //enter your url here
  htmlTree = new HtmlTree("http://www.yoururl.com");
  java.util.List links = htmlTree.getLinks();

  for (int i = 0; i < links.size(); i++) {
    println(((prohtml.Url)(links.get(i))));
  }
}
description
This methods gives you an ArrayList with Url objects of all Links in the HTML document to other HTML documents.
syntax
getLinks();
returns
List, with the found Url objects
usage
Web & Application
related