Interface DomChangeListener

All Superinterfaces:
Serializable
All Known Implementing Classes:
AbstractDomNodeList.DomHtmlAttributeChangeListenerImpl, AbstractList.DomHtmlAttributeChangeListenerImpl, HtmlPage.DomHtmlAttributeChangeListenerImpl

public interface DomChangeListener extends Serializable
Implementations of this interface receive notifications of changes to the DOM structure.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Notification that a new node was added.
    void
    Notification that a new node was deleted.
  • Method Details

    • nodeAdded

      void nodeAdded(DomChangeEvent event)
      Notification that a new node was added. Called after the node is added.
      Parameters:
      event - the node addition event
    • nodeDeleted

      void nodeDeleted(DomChangeEvent event)
      Notification that a new node was deleted. Called after the node is deleted.
      Parameters:
      event - the node deletion event