| Home >> All >> org >> enhydra >> xml >> [ dom Javadoc ] |
org.enhydra.xml.dom: Javadoc index of package org.enhydra.xml.dom.
Package Samples:
org.enhydra.xml.dom
Classes:
DOMTraversal: Class that traverse a DOM tree or subtree, calling handler methods for each node. It is up to the handler methods to make a decision on processing child and element nodes by explictly calling the methods to continue the traversal. This is gives the handler more control and actually kept the code simpler for both this class and the client. While DOM traversal is straight-forward, traversing the LazyDOM while avoiding expansion made things tricker. This class, and the derived class for the LazyDOM, handles these special cases.
DOMAccess: Method to support accessing the LazyDOM without expanding it. This works both with standard DOMs and LazyDOMs, supporting the development of code that works with either DOM. Most methods come in two flavors, static ones that take the instance document as an argument, an instance methods that use a document contained in an instance of this object. Great care should be used if the return nodes are to be modified, as read-only template nodes maybe returned. These methods also operate on any W3C DOM.
DOMInfo: Methods to print information out about a DOM. Used for debugging, etc. Has special handling for Lazy DOMs to prevent expansion.
SimpleDOMTraversal: Simple DOM traverser that calls a handler for every node in the DOM tree.
DOMInfoPrinter: DOMTraversal handler for DOMInfo, using only generic DOM interfaces.
DOMOps: Various static methods the do simple operations on the DOM.
DOMStats: Collect and print statistics on a DOM.
DOMError: Error for DOM methods.
| Home | Contact Us | Privacy Policy | Terms of Service |