public interface Callback
Modifier and Type | Method and Description |
---|---|
void |
cbDocument(java.util.Map attributes)
Callback when the opening tag was parsed.
|
void |
cbDone()
Callback when the parsing of the document is done.
|
void |
cbParents(java.lang.String child,
java.util.List parents)
Callback for child and parent relationships from section 3.
|
void |
cbPartition(Partition partition)
Callback for the partition .
|
java.lang.Object |
getConstructedObject()
Return a object that is constructed during the parsing of the object.
|
void cbDocument(java.util.Map attributes)
attributes
- is a map of attribute key to attribute valuevoid cbPartition(Partition partition)
partition
- is the PDAX-style partition.void cbParents(java.lang.String child, java.util.List parents)
child
- is the IDREF of the child element.parents
- is a list of IDREFs of the included parents.void cbDone()
java.lang.Object getConstructedObject()