Uses of Class
org.htmlunit.javascript.host.html.HTMLCollection
-
Packages that use HTMLCollection Package Description org.htmlunit.javascript.host Implementations of the various JavaScript host objects - users of HtmlUnit shouldn't need anything in this package.org.htmlunit.javascript.host.css Implementations of the CSS JavaScript host objects - users of HtmlUnit shouldn't need anything in this package.org.htmlunit.javascript.host.dom Implementations of the DOM JavaScript host objects - users of HtmlUnit shouldn't need anything in this package.org.htmlunit.javascript.host.html Implementations of the HTML JavaScript host objects - users of HtmlUnit shouldn't need anything in this package.org.htmlunit.javascript.host.xml Implementations of the XML JavaScript host objects - users of HtmlUnit shouldn't need anything in this package. -
-
Uses of HTMLCollection in org.htmlunit.javascript.host
Subclasses of HTMLCollection in org.htmlunit.javascript.host Modifier and Type Class Description (package private) class
HTMLCollectionFrames
Fields in org.htmlunit.javascript.host with type parameters of type HTMLCollection Modifier and Type Field Description private java.util.Map<java.lang.String,HTMLCollection>
Element. elementsByTagName_
Methods in org.htmlunit.javascript.host that return HTMLCollection Modifier and Type Method Description HTMLCollection
Element. getChildren()
Gets the children of the current node.HTMLCollection
Element. getElementsByClassName(java.lang.String className)
Returns all the descendant elements with the specified class.HTMLCollection
Element. getElementsByTagName(java.lang.String tagName)
Returns all the descendant elements with the specified tag name.private HTMLCollection
Window. getFrames()
Returns the live collection of frames contained by this window. -
Uses of HTMLCollection in org.htmlunit.javascript.host.css
Fields in org.htmlunit.javascript.host.css declared as HTMLCollection Modifier and Type Field Description private HTMLCollection
StyleSheetList. nodes_
We back the stylesheet list with anHTMLCollection
of styles/links because this list must be "live". -
Uses of HTMLCollection in org.htmlunit.javascript.host.dom
Methods in org.htmlunit.javascript.host.dom that return HTMLCollection Modifier and Type Method Description HTMLCollection
Document. getAll()
Returns the value of theall
property.HTMLCollection
Document. getChildren()
Gets the children of the current node.HTMLCollection
DocumentFragment. getChildren()
Gets the children of the current node.protected HTMLCollection
Node. getChildren()
Gets the children of the current node.HTMLCollection
Document. getElementsByClassName(java.lang.String className)
Returns all the descendant elements with the specified class name.HTMLCollection
Document. getElementsByTagName(java.lang.String tagName)
Returns all the descendant elements with the specified tag name. -
Uses of HTMLCollection in org.htmlunit.javascript.host.html
Subclasses of HTMLCollection in org.htmlunit.javascript.host.html Modifier and Type Class Description class
HTMLAllCollection
A specialHTMLCollection
fordocument.all
.class
HTMLFormControlsCollection
A JavaScript object forHTMLFormControlsCollection
.Fields in org.htmlunit.javascript.host.html declared as HTMLCollection Modifier and Type Field Description private HTMLCollection
HTMLMapElement. areas_
private HTMLCollection
HTMLDataListElement. options_
Methods in org.htmlunit.javascript.host.html that return HTMLCollection Modifier and Type Method Description protected HTMLCollection
HTMLCollection. create(DomNode parentScope, java.util.List<DomNode> initialElements)
Constructs a new instance with an initial cache value.static HTMLCollection
HTMLCollection. emptyCollection(DomNode domNode)
Gets an empty collection.HTMLCollection
HTMLMapElement. getAreas()
Returns the value of the JavaScript attributeareas
.HTMLCollection
HTMLFormElement. getElements()
Returns the value of the propertyelements
.HTMLCollection
HTMLDocument. getElementsByClassName(java.lang.String className)
Returns all the descendant elements with the specified class name. -
Uses of HTMLCollection in org.htmlunit.javascript.host.xml
Methods in org.htmlunit.javascript.host.xml that return HTMLCollection Modifier and Type Method Description HTMLCollection
XMLDocument. getElementsByTagName(java.lang.String tagName)
Returns all the descendant elements with the specified tag name.
-