Interface NodeVisitor
- All Known Implementing Classes:
XmlRowWriter.XmlWritingNodeVisitor
public interface NodeVisitor
Visits the nodes of a
Document.- Author:
- Ralf Wisser
-
Method Summary
Modifier and TypeMethodDescriptionvoidvisitAssociationElement(String associationName, String name) Visits association element (namespace http://jailer.sf.net/association).voidvisitComment(String comment) Visits comment.voidvisitElementEnd(String elementName, boolean isRoot) Visits end of an element.voidvisitElementStart(String elementName, boolean isRoot, String[] attributeNames, String[] attributeValues) Visits start of an element.voidVisits text node.
-
Method Details
-
visitElementStart
-
visitElementEnd
Visits end of an element.- Parameters:
elementName- the element nameisRoot- true if element is root
-
visitText
Visits text node. Pure whitespace text nodes will not be visited.- Parameters:
text- the text
-
visitAssociationElement
-
visitComment
-