Package com.irisel.util.xml

Class Summary
DOMParserSaveEncoding The DOMParserSaveEncoding class extends DOMParser.It also provides the Java Encoding of the XML document by overriding the startDocument method and providing a way to capture the MIME encoding from the XML document which in turn is converted to the Java Encoding by the internal MIME2Java class.
DOMWriter DOMWriter generates XML text from a DOM Document
ErrorStorer The ErrorStorer maps Nodes to errors.It receives a reference to the ErrorTreeFactory in the Constructor.When error is called, it asks the ErrorTreeFactory for the current node, and uses this as the "key" of a Hashtable, with the error as a value.The error value is wrapped up nicely in an ParseError object.It is used in the XML Tutorial to illustrate how to implement the ErrorListener to provide error storage for later reference.
IriselDomParser This class is used to parse documents.
MySAXParser Class to create a parser and parse an XML file
MyStAXParser Class to create a parser and parse an XML file
ParseError The ParseError class wraps up all the error info from the ErrorStorer's error method.
XMLGenerator