| java.lang.Object org.apache.xml.serializer.TreeWalker
TreeWalker | final public class TreeWalker (Code) | | This class does a pre-order walk of the DOM tree, calling a ContentHandler
interface as it goes.
This class is a copy of the one in org.apache.xml.utils.
It exists to cut the serializers dependancy on that package.
|
nextIsRaw | boolean nextIsRaw(Code) | | Flag indicating whether following text to be processed is raw text
|
TreeWalker | public TreeWalker(ContentHandler contentHandler, String systemId)(Code) | | Constructor.
Parameters: contentHandler - The implemention of thecontentHandler operation (toXMLString, digest, ...) |
getContentHandler | public ContentHandler getContentHandler()(Code) | | Get the ContentHandler used for the tree walk.
the ContentHandler used for the tree walk |
traverse | public void traverse(Node pos) throws org.xml.sax.SAXException(Code) | | Perform a pre-order traversal non-recursive style.
Note that TreeWalker assumes that the subtree is intended to represent
a complete (though not necessarily well-formed) document and, during a
traversal, startDocument and endDocument will always be issued to the
SAX listener.
Parameters: pos - Node in the tree where to start traversal throws: TransformerException - |
traverse | public void traverse(Node pos, Node top) throws org.xml.sax.SAXException(Code) | | Perform a pre-order traversal non-recursive style.
Note that TreeWalker assumes that the subtree is intended to represent
a complete (though not necessarily well-formed) document and, during a
traversal, startDocument and endDocument will always be issued to the
SAX listener.
Parameters: pos - Node in the tree where to start traversal Parameters: top - Node in the tree where to end traversal throws: TransformerException - |
|
|