Uses of Interface
org.w3c.dom.html.HTMLCollection

Packages that use HTMLCollection
org.apache.html.dom   
org.w3c.dom.html   
 

Uses of HTMLCollection in org.apache.html.dom
 

Methods in org.apache.html.dom that return HTMLCollection
 HTMLCollection HTMLDocumentImpl.getAnchors()
           
 HTMLCollection HTMLDocumentImpl.getApplets()
           
 HTMLCollection HTMLMapElementImpl.getAreas()
           
 HTMLCollection HTMLTableRowElementImpl.getCells()
           
 HTMLCollection HTMLFormElementImpl.getElements()
           
 HTMLCollection HTMLDocumentImpl.getForms()
           
 HTMLCollection HTMLDocumentImpl.getImages()
           
 HTMLCollection HTMLDocumentImpl.getLinks()
           
 HTMLCollection HTMLSelectElementImpl.getOptions()
           
 HTMLCollection HTMLTableSectionElementImpl.getRows()
           
 HTMLCollection HTMLTableElementImpl.getRows()
           
 HTMLCollection HTMLTableElementImpl.getTBodies()
           
 

Methods in org.apache.html.dom with parameters of type HTMLCollection
 void HTMLTableRowElementImpl.setCells(HTMLCollection cells)
           
 

Uses of HTMLCollection in org.w3c.dom.html
 

Methods in org.w3c.dom.html that return HTMLCollection
 HTMLCollection HTMLDocument.getAnchors()
          A collection of all the anchor (A) elements in a document with a value for the name attribute.Note.
 HTMLCollection HTMLDocument.getApplets()
          A collection of all the OBJECT elements that includeapplets and APPLET (deprecated) elements ina document.
 HTMLCollection HTMLMapElement.getAreas()
          The list of areas defined for the image map.
 HTMLCollection HTMLTableRowElement.getCells()
          The collection of cells in this row.
 HTMLCollection HTMLFormElement.getElements()
          Returns a collection of all control elements in the form.
 HTMLCollection HTMLDocument.getForms()
          A collection of all the forms of a document.
 HTMLCollection HTMLDocument.getImages()
          A collection of all the IMG elements in a document.The behavior is limited to IMG elements forbackwards compatibility.
 HTMLCollection HTMLDocument.getLinks()
          A collection of all AREA elements andanchor (A) elements in a documentwith a value for the href attribute.
 HTMLCollection HTMLSelectElement.getOptions()
          The collection of OPTION elements contained by this element.
 HTMLCollection HTMLTableSectionElement.getRows()
          The collection of rows in this table section.
 HTMLCollection HTMLTableElement.getRows()
          Returns a collection of all the rows in the table, including all in THEAD, TFOOT, all TBODY elements.
 HTMLCollection HTMLTableElement.getTBodies()
          Returns a collection of the defined table bodies.
 

Methods in org.w3c.dom.html with parameters of type HTMLCollection
 void HTMLTableRowElement.setCells(HTMLCollection cells)