Uses of Interface
org.htmlunit.html.HtmlAttributeChangeListener
-
Packages that use HtmlAttributeChangeListener Package Description org.htmlunit.html Classes specific to HTML pages, particularly theHtmlPagewhich 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 classAbstractDomNodeList.DomHtmlAttributeChangeListenerImplDOM change listener which clears the node cache when necessary.private classHtmlPage.DomHtmlAttributeChangeListenerImplListens 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 voidHtmlElement. addHtmlAttributeChangeListener(HtmlAttributeChangeListener listener)Adds an HtmlAttributeChangeListener to the listener list.voidHtmlPage. addHtmlAttributeChangeListener(HtmlAttributeChangeListener listener)Adds an HtmlAttributeChangeListener to the listener list.voidHtmlElement. removeHtmlAttributeChangeListener(HtmlAttributeChangeListener listener)Removes an HtmlAttributeChangeListener from the listener list.voidHtmlPage. 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 classAbstractList.DomHtmlAttributeChangeListenerImplclassMutationObserverA JavaScript object forMutationObserver.
-