Uses of Class
com.topologi.diffx.sequence.EventSequence

Packages that use EventSequence
com.topologi.diffx.algorithm Main algorithm implementations. 
com.topologi.diffx.load The set of classes used to produce the sequences that Diff-X will process. 
com.topologi.diffx.sequence Sequences and sequence utility tools. 
 

Uses of EventSequence in com.topologi.diffx.algorithm
 

Methods in com.topologi.diffx.algorithm that return EventSequence
 EventSequence DiffXAlgorithmBase.getFirstSequence()
           
 EventSequence DiffXAlgorithmBase.getSecondSequence()
           
 EventSequence DiffXAlgorithm.getFirstSequence()
          Returns the first sequence used for the diff-x comparison.
 EventSequence DiffXAlgorithm.getSecondSequence()
          Returns the second sequence used for the diff-x comparison.
 

Methods in com.topologi.diffx.algorithm with parameters of type EventSequence
static DiffXAlgorithm DiffXFactory.createDiffex(String className, EventSequence sequence1, EventSequence sequence2)
          Creates a diffex instance using the specified class name and event sequences.
 

Constructors in com.topologi.diffx.algorithm with parameters of type EventSequence
DiffXKumarRangan(EventSequence seq0, EventSequence seq1)
          Creates a new DiffXAlgorithmBase.
DiffXFitWesyma(EventSequence seq0, EventSequence seq1)
          Creates a new DiffXAlgorithmBase.
DiffXFitsy(EventSequence seq0, EventSequence seq1)
          Creates a new DiffXAlgorithmBase.
DiffXFitopsy(EventSequence seq0, EventSequence seq1)
          Creates a new DiffXAlgorithmBase.
DiffXAlgorithmBase(EventSequence seq0, EventSequence seq1)
          Creates a new DiffX algorithm base class.
 

Uses of EventSequence in com.topologi.diffx.load
 

Methods in com.topologi.diffx.load that return EventSequence
 EventSequence XMLRecorder.process(InputSource is)
          Runs the recorder on the specified input source.
 EventSequence TextRecorder.process(File file)
          Runs the recorder on the specified file.
 EventSequence TextRecorder.process(String text)
          Runs this recorder on the specified string.
 EventSequence SAXRecorder.process(File file)
          Runs the recorder on the specified file.
 EventSequence SAXRecorder.process(String xml)
          Runs the recorder on the specified string.
 EventSequence SAXRecorder.process(InputSource is)
          Runs the recorder on the specified input source.
 EventSequence Recorder.process(File file)
          Runs the recorder on the specified file.
 EventSequence Recorder.process(String xml)
          Runs the recorder on the specified string.
 EventSequence DOMRecorder.process(File file)
           
 EventSequence DOMRecorder.process(String xml)
           
 EventSequence DOMRecorder.process(InputSource is)
          Runs the recorder on the specified input source.
 EventSequence DOMRecorder.process(Node node)
          Processed the given node and return the corresponding event sequence.
 

Uses of EventSequence in com.topologi.diffx.sequence
 

Methods in com.topologi.diffx.sequence that return EventSequence
 EventSequence SequenceSlicer.getStart()
          Returns the current start sequence buffer.
 EventSequence SequenceSlicer.getEnd()
          Returns the current end sequence buffer.
 EventSequence NaiveSequenceSlicer.getStart()
          Returns the current start sequence buffer.
 EventSequence NaiveSequenceSlicer.getEnd()
          Returns the current end sequence buffer.
 

Methods in com.topologi.diffx.sequence with parameters of type EventSequence
static boolean EventSequenceUtils.isWellFormed(EventSequence sequence)
          Indicates whether the sequence corresponds to well-formed XML.
static int EventSequenceUtils.getMaxDepth(EventSequence sequence)
          Returns the maximum depth of the sequence.
static int EventSequenceUtils.getMaxElementContent(EventSequence sequence)
          Returns the maximum number of token inside an element tag.
 void EventSequence.addSequence(EventSequence seq)
          Adds a sequence of events to this sequence.
 boolean EventSequence.equals(EventSequence seq)
          Returns true if the specified event sequence is the same as this one.
 

Constructors in com.topologi.diffx.sequence with parameters of type EventSequence
SequenceSlicer(EventSequence seq0, EventSequence seq1)
          Creates a new sequence slicer.
NaiveSequenceSlicer(EventSequence seq0, EventSequence seq1)
          Creates a new sequence slicer.