Package org.htmlunit.html
Interface DomChangeListener
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
AbstractDomNodeList.DomHtmlAttributeChangeListenerImpl
,AbstractList.DomHtmlAttributeChangeListenerImpl
,HtmlPage.DomHtmlAttributeChangeListenerImpl
Implementations of this interface receive notifications of changes to the DOM structure.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
nodeAdded
(DomChangeEvent event) Notification that a new node was added.void
nodeDeleted
(DomChangeEvent event) Notification that a new node was deleted.
-
Method Details
-
nodeAdded
Notification that a new node was added. Called after the node is added.- Parameters:
event
- the node addition event
-
nodeDeleted
Notification that a new node was deleted. Called after the node is deleted.- Parameters:
event
- the node deletion event
-