Uses of Interface
org.htmlunit.html.HtmlAttributeChangeListener
-
Packages that use HtmlAttributeChangeListener Package Description org.htmlunit.html Classes specific to HTML pages, particularly theHtmlPage
which represents an HTML document and provides access to its content.org.htmlunit.javascript.host.dom Implementations of the DOM JavaScript host objects - users of HtmlUnit shouldn't need anything in this package. -
-
Uses of HtmlAttributeChangeListener in org.htmlunit.html
Classes in org.htmlunit.html that implement HtmlAttributeChangeListener Modifier and Type Class Description private static class
AbstractDomNodeList.DomHtmlAttributeChangeListenerImpl
DOM change listener which clears the node cache when necessary.private class
HtmlPage.DomHtmlAttributeChangeListenerImpl
Listens for changes anywhere in the document and evicts cached computed styles whenever something relevant changes.Fields in org.htmlunit.html with type parameters of type HtmlAttributeChangeListener Modifier and Type Field Description private java.util.List<HtmlAttributeChangeListener>
HtmlElement. attributeListeners_
The listeners which are to be notified of attribute changes.private java.util.Collection<HtmlAttributeChangeListener>
HtmlPage. attributeListeners_
Methods in org.htmlunit.html that return types with arguments of type HtmlAttributeChangeListener Modifier and Type Method Description private java.util.List<HtmlAttributeChangeListener>
HtmlPage. safeGetAttributeListeners()
Methods in org.htmlunit.html with parameters of type HtmlAttributeChangeListener Modifier and Type Method Description void
HtmlElement. addHtmlAttributeChangeListener(HtmlAttributeChangeListener listener)
Adds an HtmlAttributeChangeListener to the listener list.void
HtmlPage. addHtmlAttributeChangeListener(HtmlAttributeChangeListener listener)
Adds an HtmlAttributeChangeListener to the listener list.void
HtmlElement. removeHtmlAttributeChangeListener(HtmlAttributeChangeListener listener)
Removes an HtmlAttributeChangeListener from the listener list.void
HtmlPage. removeHtmlAttributeChangeListener(HtmlAttributeChangeListener listener)
Removes an HtmlAttributeChangeListener from the listener list. -
Uses of HtmlAttributeChangeListener in org.htmlunit.javascript.host.dom
Classes in org.htmlunit.javascript.host.dom that implement HtmlAttributeChangeListener Modifier and Type Class Description private static class
AbstractList.DomHtmlAttributeChangeListenerImpl
class
MutationObserver
A JavaScript object forMutationObserver
.
-