Package org.htmlunit.html
Interface DomChangeListener
- All Superinterfaces:
Serializable
Implementations of this interface receive notifications of changes to the DOM structure.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidnodeAdded(DomChangeEvent event) Notification that a new node was added.voidnodeDeleted(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
-