Uses of Class
org.htmlunit.javascript.host.dom.NodeList
-
Packages that use NodeList 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.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. -
-
Uses of NodeList in org.htmlunit.javascript.host
Methods in org.htmlunit.javascript.host that return NodeList Modifier and Type Method Description NodeListElement. querySelectorAll(java.lang.String selectors)Retrieves all element nodes from descendants of the starting element node that match any selector within the supplied selector strings. -
Uses of NodeList in org.htmlunit.javascript.host.dom
Subclasses of NodeList in org.htmlunit.javascript.host.dom Modifier and Type Class Description classRadioNodeListA JavaScript object forRadioNodeList.Fields in org.htmlunit.javascript.host.dom declared as NodeList Modifier and Type Field Description private NodeListMutationRecord. addedNodes_private NodeListNode. childNodes_"Live" child nodes collection; has to be a member to have equality (==) working.private NodeListMutationRecord. removedNodes_Methods in org.htmlunit.javascript.host.dom that return NodeList Modifier and Type Method Description NodeListMutationRecord. getAddedNodes()NodeListNode. getChildNodes()Returns the child nodes of the current element.NodeListDocument. getElementsByName(java.lang.String elementName)Returns all HTML elements that have anameattribute with the specified value.NodeListMutationRecord. getRemovedNodes()NodeListDocument. querySelectorAll(java.lang.String selectors)Retrieves all element nodes from descendants of the starting element node that match any selector within the supplied selector strings.NodeListDocumentFragment. querySelectorAll(java.lang.String selectors)Retrieves all element nodes from descendants of the starting element node that match any selector within the supplied selector strings.static NodeListNodeList. staticNodeList(HtmlUnitScriptable parentScope, java.util.List<DomNode> elements)Gets a static NodeList.Methods in org.htmlunit.javascript.host.dom with parameters of type NodeList Modifier and Type Method Description (package private) voidMutationRecord. setAddedNodes(NodeList addedNodes)Sets theaddedNodesproperty.(package private) voidMutationRecord. setRemovedNodes(NodeList removedNodes)Sets theremovedNodesproperty. -
Uses of NodeList in org.htmlunit.javascript.host.html
Subclasses of NodeList in org.htmlunit.javascript.host.html Modifier and Type Class Description (package private) classLabelsNodeListA specialNodeListto implement.labelsproperty.Fields in org.htmlunit.javascript.host.html declared as NodeList Modifier and Type Field Description private NodeListHTMLButtonElement. labels_"Live" labels collection; has to be a member to have equality (==) working.private NodeListHTMLInputElement. labels_"Live" labels collection; has to be a member to have equality (==) working.private NodeListHTMLMeterElement. labels_"Live" labels collection; has to be a member to have equality (==) working.private NodeListHTMLOutputElement. labels_"Live" labels collection; has to be a member to have equality (==) working.private NodeListHTMLProgressElement. labels_"Live" labels collection; has to be a member to have equality (==) working.private NodeListHTMLSelectElement. labels_"Live" labels collection; has to be a member to have equality (==) working.private NodeListHTMLTextAreaElement. labels_"Live" labels collection; has to be a member to have equality (==) working.Methods in org.htmlunit.javascript.host.html that return NodeList Modifier and Type Method Description NodeListHTMLDocument. getElementsByName(java.lang.String elementName)Returns all HTML elements that have anameattribute with the specified value.NodeListHTMLButtonElement. getLabels()Returns the labels associated with the element.NodeListHTMLInputElement. getLabels()Returns the labels associated with the element.NodeListHTMLMeterElement. getLabels()Returns the labels associated with the element.NodeListHTMLOutputElement. getLabels()Returns the labels associated with the element.NodeListHTMLProgressElement. getLabels()Returns the labels associated with the element.NodeListHTMLSelectElement. getLabels()Returns the labels associated with the element.NodeListHTMLTextAreaElement. getLabels()Returns the labels associated with the element.
-