interface XmlProcessor
XmlRemapperIO for
processing XML document before saving and after loading. Application can
provide appropriate processor for saving/restoring additional data inside
XML document.| Modifier and Type | Method and Description |
|---|---|
void |
postprocess(org.w3c.dom.Document dom)
This method is called by
XmlRemapperIO after successful
restoring directory tree from XML document. |
void |
preprocess(org.w3c.dom.Document dom,
org.w3c.dom.Node root)
This method is called by
XmlRemapperIO after storing
directory tree but before saving XML document into external storage. |
void preprocess(org.w3c.dom.Document dom,
org.w3c.dom.Node root)
XmlRemapperIO after storing
directory tree but before saving XML document into external storage.dom - Reference to the Document.root - Reference to root node.void postprocess(org.w3c.dom.Document dom)
XmlRemapperIO after successful
restoring directory tree from XML document.dom - Reference to the Document.