public interface NodeVisitor
Document
.Modifier and Type | Method and Description |
---|---|
void |
visitAssociationElement(java.lang.String associationName,
java.lang.String name)
Visits association element (namespace http://jailer.sf.net/association).
|
void |
visitComment(java.lang.String comment)
Visits comment.
|
void |
visitElementEnd(java.lang.String elementName,
boolean isRoot)
Visits end of an element.
|
void |
visitElementStart(java.lang.String elementName,
boolean isRoot,
java.lang.String[] attributeNames,
java.lang.String[] attributeValues)
Visits start of an element.
|
void |
visitText(java.lang.String text)
Visits text node.
|
void visitElementStart(java.lang.String elementName, boolean isRoot, java.lang.String[] attributeNames, java.lang.String[] attributeValues)
elementName
- the element nameisRoot
- true if element is rootvoid visitElementEnd(java.lang.String elementName, boolean isRoot)
elementName
- the element nameisRoot
- true if element is rootvoid visitText(java.lang.String text)
text
- the textvoid visitAssociationElement(java.lang.String associationName, java.lang.String name)
associationName
- the association namename
- element/field namevoid visitComment(java.lang.String comment)
comment
- the comment