Uses of Class
it.sauronsoftware.grab4j.html.HTMLElement

Packages that use HTMLElement
it.sauronsoftware.grab4j.html This package contains classes useful for parsing and representing a HTML document. 
 

Uses of HTMLElement in it.sauronsoftware.grab4j.html
 

Subclasses of HTMLElement in it.sauronsoftware.grab4j.html
 class HTMLImage
          This class represents the HTML image tags ("img" tags).
 class HTMLLink
          This class represents the HTML link tags ("a" tags).
 class HTMLTag
          This class represents the HTML tags.
 class HTMLText
          This class represents the textual nodes of a HTML document.
 

Methods in it.sauronsoftware.grab4j.html that return HTMLElement
 HTMLElement HTMLElement.getElement(int index)
          This method returns a sub-element.
 HTMLElement HTMLDocument.getElement(int index)
          This method returns the element at the given index.
 HTMLElement HTMLElement.getElementById(java.lang.String id)
          This method explores recursively the element children, searching the first occurrence of an element with the given value in its "id" attribute.
 HTMLElement HTMLDocument.getElementById(java.lang.String id)
          This method explores recursively the document elements, searching the first occurrence of an element with the given value in its "id" attribute.
 HTMLElement[] HTMLElement.getElements()
          This method returns an array with the sub-elements.
 HTMLElement[] HTMLDocument.getElements()
          This method returns an array with all the document first-level elements.
 HTMLElement[] HTMLElement.getElementsByAttribute(java.lang.String attributeName, java.lang.String attributeValue)
          This method searches recursively inside the element children, selecting the ones whose have a given attribute with a given value.
 HTMLElement[] HTMLDocument.getElementsByAttribute(java.lang.String attributeName, java.lang.String attributeValue)
          This method searches recursively inside the document elements, selecting the ones whose have a given attribute with a given value.
 HTMLElement[] HTMLElement.getElementsByTag(java.lang.String tagName)
          This method searches recursively inside the element children, selecting the ones whose name is equal to the given tag name.
 HTMLElement[] HTMLDocument.getElementsByTag(java.lang.String tagName)
          This method searches recursively inside the document elements, selecting the ones whose name is equal to the given tag name.
 HTMLElement HTMLElement.getNextElement()
          This method returns the next element.
 HTMLElement HTMLElement.getParentElement()
          This method returns the parent element.
 HTMLElement HTMLElement.getPreviousElement()
          This method returns the previous element.
 HTMLElement HTMLElement.searchElement(Criteria searchCriteria)
          This method searches recursively inside the element children and returns the first occurrence of the results list.
 HTMLElement HTMLDocument.searchElement(Criteria searchCriteria)
          This method searches recursively inside the document elements and returns the first occurrence of the results list.
 HTMLElement HTMLElement.searchElement(java.lang.String searchCriteria)
          This method searches recursively inside the element children and returns the first occurrence of the results list.
 HTMLElement HTMLDocument.searchElement(java.lang.String searchCriteria)
          This method searches recursively inside the document elements and returns the first occurrence of the results list.
 HTMLElement[] HTMLElement.searchElements(Criteria searchCriteria)
          This method searches recursively inside the element children.
 HTMLElement[] HTMLDocument.searchElements(Criteria searchCriteria)
          This method searches recursively inside the document elements.
 HTMLElement[] HTMLElement.searchElements(java.lang.String searchCriteria)
          This method searches recursively inside the element children.
 HTMLElement[] HTMLDocument.searchElements(java.lang.String searchCriteria)
          This method searches recursively inside the document elements.