Package org.apache.ws.commons.serialize
This package contains classes for serializing XML to an instance of
Writer
, much like the javax.xml.transform.stream
package. The main differences are, that the serializer classes depend
on JAXP 1.1 only (as opposed to JAXP 1.2, which introduced the
javax.xml.transform
package) and that they allow a more
granular handling of namespaces.
-
Interface Summary Interface Description XMLWriter A simple serializer for XML documents, which is writing to an instance ofWriter
. -
Class Summary Class Description CharSetXMLWriter An improved version ofXMLWriterImpl
, using theCharset
from Java 1.4.DOMBuilder Converts a stream of SAX events into a DOM node.DOMSerializer Serializes a DOM node into a stream of SAX events.OrderedAttributeXMLWriter A subclass ofXMLWriterImpl
, which writes the attributes ordered alphabetically.PassThroughXMLWriter A subclass ofXMLWriterImpl
, which is escaping nothing.XMLWriterImpl Default implementation ofXMLWriter
.