Package org.apache.batik.css.engine
Interface CSSNavigableDocumentListener
- All Known Implementing Classes:
CSSEngine.CSSNavigableDocumentHandler
public interface CSSNavigableDocumentListener
An interface for listeners of CSSNavigableDocument events. The
events parallel the DOM events, but apply to the CSS view of
the tree rather than the actual DOM tree.
- Version:
- $Id: CSSNavigableDocumentListener.java 1733416 2016-03-03 07:07:13Z gadams $
-
Method Summary
Modifier and TypeMethodDescriptionvoid
attrModified
(Element e, Attr attr, short attrChange, String prevValue, String newValue) An attribute has changed in the CSSNavigableDocument.void
characterDataModified
(Node text) Character data in the CSSNavigableDocument tree has been modified.void
nodeInserted
(Node newNode) A node has been inserted into the CSSNavigableDocument tree.void
nodeToBeRemoved
(Node oldNode) A node is about to be removed from the CSSNavigableDocument tree.void
overrideStylePropertyChanged
(CSSStylableElement e, String name, String val, String prio) A property in the override style declaration has been changed.void
A property in the override style declaration has been removed.void
The text of the override style declaration for this element has been modified.void
subtreeModified
(Node rootOfModifications) A subtree of the CSSNavigableDocument tree has been modified in some way.
-
Method Details
-
nodeInserted
A node has been inserted into the CSSNavigableDocument tree. -
nodeToBeRemoved
A node is about to be removed from the CSSNavigableDocument tree. -
subtreeModified
A subtree of the CSSNavigableDocument tree has been modified in some way. -
characterDataModified
Character data in the CSSNavigableDocument tree has been modified. -
attrModified
An attribute has changed in the CSSNavigableDocument. -
overrideStyleTextChanged
The text of the override style declaration for this element has been modified. -
overrideStylePropertyRemoved
A property in the override style declaration has been removed. -
overrideStylePropertyChanged
A property in the override style declaration has been changed.
-