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

Packages that use XMLWritable
com.topologi.diffx.event The event interfaces used by the Diff-X algorithm. 
com.topologi.diffx.event.impl The events implementations used by the Diff-X. 
com.topologi.diffx.xml.sax SAX Extension to the XML tools. 
 

Uses of XMLWritable in com.topologi.diffx.event
 

Subinterfaces of XMLWritable in com.topologi.diffx.event
 interface AttributeEvent
          An event for attributes.
 interface CloseElementEvent
          The event corresponding to the endElement SAX event.
 interface DiffXEvent
          Defines and event that can be processed by DiffX.
 interface OpenElementEvent
          The event corresponding to the startElement SAX event.
 interface TextEvent
          An interface for any data that comes from a text node.
 

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

Classes in com.topologi.diffx.event.impl that implement XMLWritable
 class AttributeEventImpl
          A basic implementation of the attribute event.
 class AttributeEventNSImpl
          A namespace aware implementation of the attribute event.
 class CharactersEvent
          An event corresponds to the "characters" SAX event.
 class CharactersEventBase
          A base class for all the characters events "characters" SAX event.
 class CharEvent
          Event corresponding to a single character.
 class CloseElementEventImpl
          A basic implementation of the close element event.
 class CloseElementEventNSImpl
          The event corresponding to the startElement SAX event.
 class CommentEvent
          A comment event.
 class IgnorableSpaceEvent
          A particular type of event reserved for ignored white spaces.
 class LineEvent
          An interface for any data that comes from a text node.
 class OpenElementEventImpl
          A basic implementation of the close element event.
 class OpenElementEventNSImpl
          The event corresponding to the startElement SAX event.
 class ProcessingInstructionEvent
          A processing instruction event.
 class SpaceEvent
          A particular type of event reserved for white spaces.
 class WordEvent
          A text event representing a word.
 class XMLBranchEvent
          A branch of XML data.
 

Uses of XMLWritable in com.topologi.diffx.xml.sax
 

Methods in com.topologi.diffx.xml.sax that return XMLWritable
 XMLWritable XMLWritableInputSource.getXMLWritable()
          Returns the XMLWritable object
 

Methods in com.topologi.diffx.xml.sax with parameters of type XMLWritable
 void XMLWritableReader.parse(XMLWritable xml)
          
 

Constructors in com.topologi.diffx.xml.sax with parameters of type XMLWritable
XMLWritableInputSource(XMLWritable object)
          Creates an XML Writable object.