Uses of Class
com.topologi.diffx.config.DiffXConfig

Packages that use DiffXConfig
com.topologi.diffx The core set of classes used by Diff-X. 
com.topologi.diffx.format Classes for formatting and text processing. 
com.topologi.diffx.load The set of classes used to produce the sequences that Diff-X will process. 
com.topologi.diffx.load.text The set of classes to load characters / text data specifically. 
 

Uses of DiffXConfig in com.topologi.diffx
 

Methods in com.topologi.diffx with parameters of type DiffXConfig
static void Main.diff(Node xml1, Node xml2, Writer out, DiffXConfig config)
          Compares the two specified xml files and prints the diff onto the given writer.
static void Main.diff(Reader xml1, Reader xml2, Writer out, DiffXConfig config)
          Compares the two specified xml files and prints the diff onto the given writer.
 

Uses of DiffXConfig in com.topologi.diffx.format
 

Methods in com.topologi.diffx.format with parameters of type DiffXConfig
 void StrictXMLFormatter.setConfig(DiffXConfig config)
           
 void SmartXMLFormatter.setConfig(DiffXConfig config)
           
 void ShortStringFormatter.setConfig(DiffXConfig config)
          Ignored.
 void DiffXFormatter.setConfig(DiffXConfig config)
          Sets the configuration to use with this formatter.
 

Uses of DiffXConfig in com.topologi.diffx.load
 

Methods in com.topologi.diffx.load that return DiffXConfig
 DiffXConfig SAXRecorder.getConfig()
          Returns the configuration used by this recorder.
 DiffXConfig DOMRecorder.getConfig()
          Returns the configuration used by this recorder.
 

Methods in com.topologi.diffx.load with parameters of type DiffXConfig
 void SAXRecorder.setConfig(DiffXConfig config)
          Sets the configuration used by this recorder.
 void DOMRecorder.setConfig(DiffXConfig config)
          Sets the configuration used by this recorder.
 

Uses of DiffXConfig in com.topologi.diffx.load.text
 

Methods in com.topologi.diffx.load.text that return DiffXConfig
 DiffXConfig TokeniserFactory.getConfig()
          Returns the configuration used by this factory.
 

Constructors in com.topologi.diffx.load.text with parameters of type DiffXConfig
TokeniserFactory(DiffXConfig config)
          Creates a factory for tokenisers.