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 GuanoAlgorithm.getFirstSequence()
           
 EventSequence DiffXAlgorithmBase.getFirstSequence()
          Returns the first sequence used for the diff-x comparison.
 EventSequence DiffXAlgorithm.getFirstSequence()
          Returns the first sequence used for the diff-x comparison.
 EventSequence GuanoAlgorithm.getSecondSequence()
           
 EventSequence DiffXAlgorithmBase.getSecondSequence()
          Returns the second 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)
          Deprecated. use newAlgorithm
static DiffXAlgorithm DiffXFactory.newAlgorithm(String className, EventSequence sequence1, EventSequence sequence2)
          Creates a Diff-X instance using the specified class name and event sequences.
 

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

Uses of EventSequence in com.topologi.diffx.load
 

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

Uses of EventSequence in com.topologi.diffx.sequence
 

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

Methods in com.topologi.diffx.sequence with parameters of type EventSequence
 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.
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.
static boolean EventSequenceUtils.isWellFormed(EventSequence sequence)
          Indicates whether the sequence corresponds to well-formed XML.
 

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