name
HtmlList
import prohtml.*;

HtmlList htmlList;

void setup(){
  //enter your url here
  htmlList = new HtmlList("http://www.yoururl.com");
  
  htmlList.printElements();
}
description
Object for parsing a valid Html Document to convert its String into a HtmlList representing its elements. Use HtmlList if you just need a list with all elements. The element List can contain text and html elements. In the HtmlList all html elements are parsed as standalone elements. This is because the tree structure of the html document gets lost parsing it into a List. There is no element having children.
constructors
HtmlList(url);
HtmlList(page, url);
HtmlCollection(url);
HtmlCollection(page, url);
parameters
url
String, the url to document to be parsed
page
StringReader, holding the document to be parsed
url
String
fields
Arraylist holding the colors found in the page
This field holds the complete List of elements.
Keeps the absolutepart (without file information) of the url of this document.
methods
This methods gives you an ArrayList with the elements you looked for.
Use this method to get all Links of a document.
Use this Method to get the number of all different colors of a HTML document.
GetPageColor gives you a specified color of an HtmlPage.
Use this method for a simple trace of all elements in the list of the parsed html document.
usage
Web & Application
related