public abstract class Delta extends ToString
Diff,
Chunk,
modifications 27 Apr 2003 bwm Added getOriginal() and
getRevised() accessor methods Added visitor pattern accept() method| Modifier and Type | Field and Description |
|---|---|
protected Chunk |
original |
protected Chunk |
revised |
| Modifier | Constructor and Description |
|---|---|
protected |
Delta()
Creates an uninitialized delta.
|
protected |
Delta(Chunk orig,
Chunk rev)
Creates a delta object with the given chunks from the original and
revised texts.
|
| Modifier and Type | Method and Description |
|---|---|
abstract void |
accept(RevisionVisitor visitor)
Accepts a visitor.
|
abstract void |
applyTo(List target)
Applies this delta as a patch to the given text.
|
Chunk |
getOriginal()
Accessor method to return the chunk representing the original sequence of
items
|
Chunk |
getRevised()
Accessor method to return the chunk representing the updated sequence of
items.
|
protected void |
init(Chunk orig,
Chunk rev)
Initializaes the delta with the given chunks from the original and
revised texts.
|
static Delta |
newDelta(Chunk orig,
Chunk rev)
Returns a Delta that corresponds to the given chunks in the original and
revised text respectively.
|
void |
patch(List target)
Applies this delta as a patch to the given text.
|
String |
toRCSString(String EOL)
Converts this delta into its RCS style string representation.
|
abstract void |
toRCSString(StringBuffer s,
String EOL)
Converts this delta into its RCS style string representation.
|
void |
toString(StringBuffer s)
Converts this delta into its Unix diff style string representation.
|
abstract void |
verify(List target)
Verifies that this delta can be used to patch the given text.
|
arrayToString, arrayToString, stringToArray, toStringpublic static Delta newDelta(Chunk orig, Chunk rev)
orig - the chunk in the original text.rev - the chunk in the revised text.protected void init(Chunk orig, Chunk rev)
public abstract void verify(List target) throws PatchFailedException
target - the text to patch.PatchFailedException - if the patch cannot be applied.public final void patch(List target) throws PatchFailedException
target - the text to patch.PatchFailedException - if the patch cannot be applied.public abstract void applyTo(List target)
target - the text to patch.PatchFailedException - if the patch cannot be applied.public void toString(StringBuffer s)
toString in class ToStrings - a StringBuffer to which the string
representation will be appended.public abstract void toRCSString(StringBuffer s, String EOL)
s - a StringBuffer to which the string
representation will be appended.EOL - the string to use as line separator.public String toRCSString(String EOL)
EOL - the string to use as line separator.public Chunk getOriginal()
public Chunk getRevised()
public abstract void accept(RevisionVisitor visitor)
See the Visitor pattern in "Design Patterns" by the GOF4.
visitor - The visitor.Copyright © 2003–2021 Sakai Project. All rights reserved.