Uses of Interface
org.htmlunit.html.CharacterDataChangeListener
-
Packages that use CharacterDataChangeListener 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 CharacterDataChangeListener in org.htmlunit.html
Fields in org.htmlunit.html with type parameters of type CharacterDataChangeListener Modifier and Type Field Description private java.util.List<CharacterDataChangeListener>
DomNode. characterDataListeners_
The listeners which are to be notified of characterData change.Methods in org.htmlunit.html that return types with arguments of type CharacterDataChangeListener Modifier and Type Method Description private java.util.List<CharacterDataChangeListener>
DomNode. safeGetCharacterDataListeners()
Methods in org.htmlunit.html with parameters of type CharacterDataChangeListener Modifier and Type Method Description void
DomNode. addCharacterDataChangeListener(CharacterDataChangeListener listener)
Adds aCharacterDataChangeListener
to the listener list.void
DomNode. removeCharacterDataChangeListener(CharacterDataChangeListener listener)
Removes aCharacterDataChangeListener
from the listener list. -
Uses of CharacterDataChangeListener in org.htmlunit.javascript.host.dom
Classes in org.htmlunit.javascript.host.dom that implement CharacterDataChangeListener Modifier and Type Class Description class
MutationObserver
A JavaScript object forMutationObserver
.
-