- defaultAlgorithm() - Method in class org.apache.commons.jrcs.diff.Diff
-
- DeleteDelta - Class in org.apache.commons.jrcs.diff
-
Holds a delete-delta between to revisions of a text.
- DeleteDelta(Chunk) - Constructor for class org.apache.commons.jrcs.diff.DeleteDelta
-
- Delta - Class in org.apache.commons.jrcs.diff
-
Holds a "delta" difference between to revisions of a text.
- Delta() - Constructor for class org.apache.commons.jrcs.diff.Delta
-
Creates an uninitialized delta.
- Delta(Chunk, Chunk) - Constructor for class org.apache.commons.jrcs.diff.Delta
-
Creates a delta object with the given chunks from the original and
revised texts.
- Diff - Class in org.apache.commons.jrcs.diff
-
Implements a differencing engine that works on arrays of
Object.
- Diff(Object[]) - Constructor for class org.apache.commons.jrcs.diff.Diff
-
Create a differencing object using the default algorithm
- Diff(Object[], DiffAlgorithm) - Constructor for class org.apache.commons.jrcs.diff.Diff
-
Create a differencing object using the given algorithm
- diff(Object[], Object[]) - Static method in class org.apache.commons.jrcs.diff.Diff
-
compute the difference between an original and a revision.
- diff(Object[], Object[], DiffAlgorithm) - Static method in class org.apache.commons.jrcs.diff.Diff
-
compute the difference between an original and a revision.
- diff(Object[]) - Method in class org.apache.commons.jrcs.diff.Diff
-
compute the difference between the original and a revision.
- diff(Object[], Object[]) - Method in interface org.apache.commons.jrcs.diff.DiffAlgorithm
-
Computes the difference between the original sequence and the revised
sequence and returns it as a
Revision object.
- diff(Object[], Object[]) - Method in class org.apache.commons.jrcs.diff.myers.MyersDiff
-
Computes the difference between the original sequence and the revised
sequence and returns it as a
Revision object.
- diff(Object[], Object[]) - Method in class org.apache.commons.jrcs.diff.SimpleDiff
-
Compute the difference between original and revised sequences.
- DiffAlgorithm - Interface in org.apache.commons.jrcs.diff
-
A simple interface for implementations of differencing algorithms.
- DifferentiationFailedException - Exception in org.apache.commons.jrcs.diff
-
Thrown whenever the differencing engine cannot produce the differences
between two revisions of ta text.
- DifferentiationFailedException() - Constructor for exception org.apache.commons.jrcs.diff.DifferentiationFailedException
-
- DifferentiationFailedException(String) - Constructor for exception org.apache.commons.jrcs.diff.DifferentiationFailedException
-
- DifferentiationFailedException(String, Throwable) - Constructor for exception org.apache.commons.jrcs.diff.DifferentiationFailedException
-
- DifferentiationFailedException(Throwable) - Constructor for exception org.apache.commons.jrcs.diff.DifferentiationFailedException
-
- DiffException - Exception in org.apache.commons.jrcs.diff
-
Base class for all exceptions emanating from this package.
- DiffException() - Constructor for exception org.apache.commons.jrcs.diff.DiffException
-
- DiffException(String) - Constructor for exception org.apache.commons.jrcs.diff.DiffException
-
- DiffException(String, Throwable) - Constructor for exception org.apache.commons.jrcs.diff.DiffException
-
- DiffException(Throwable) - Constructor for exception org.apache.commons.jrcs.diff.DiffException
-
- DiffNode - Class in org.apache.commons.jrcs.diff.myers
-
A diffnode in a diffpath.
- DiffNode(int, int, PathNode) - Constructor for class org.apache.commons.jrcs.diff.myers.DiffNode
-
Constructs a DiffNode.