Uses of Interface
com.topologi.diffx.xml.XMLWriter

Packages that use XMLWriter
com.topologi.diffx.event.impl The events implemnentations used by the Diff-X algorithm. 
com.topologi.diffx.xml A set classes and interfaces for XML processing. 
 

Uses of XMLWriter in com.topologi.diffx.event.impl
 

Methods in com.topologi.diffx.event.impl with parameters of type XMLWriter
 void XMLBranchEvent.toXML(XMLWriter xml)
          Write the DiffX events in order.
 void ProcessingInstructionEvent.toXML(XMLWriter xml)
           
 void OpenElementEventNSImpl.toXML(XMLWriter xml)
           
 void OpenElementEventImpl.toXML(XMLWriter xml)
           
 void LineEvent.toXML(XMLWriter xml)
           
 void IgnorableSpaceEvent.toXML(XMLWriter xml)
           
 void CloseElementEventNSImpl.toXML(XMLWriter xml)
           
 void CloseElementEventImpl.toXML(XMLWriter xml)
           
 void CharEvent.toXML(XMLWriter xml)
           
 void CharactersEventBase.toXML(XMLWriter xml)
           
 void AttributeEventNSImpl.toXML(XMLWriter xml)
           
 void AttributeEventImpl.toXML(XMLWriter xml)
           
 

Uses of XMLWriter in com.topologi.diffx.xml
 

Classes in com.topologi.diffx.xml that implement XMLWriter
 class NSAwareXMLWriter
          A Namespace-aware writer for XML data.
 class SimpleXMLWriter
          A simple writer for XML data that does not support namespaces.
(package private)  class com.topologi.diffx.xml.XMLWriterBase
          A base implementation for XML writers.
 

Methods in com.topologi.diffx.xml that return XMLWriter
 XMLWriter XMLSerializer.getXML()
          Returns the underlying XML document.
 

Methods in com.topologi.diffx.xml with parameters of type XMLWriter
 void XMLWritable.toXML(XMLWriter xml)
          Writes the XML representation of the implementing instance using the specified XMLWriter.
 

Constructors in com.topologi.diffx.xml with parameters of type XMLWriter
XMLSerializer(XMLWriter xml)
          Creates a new XML serializer using the specified XML writer.