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 |
|---|---|
(package private) static java.lang.Class[][] |
DeltaClass |
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(java.util.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(java.util.List target)
Applies this delta as a patch to the given text.
|
java.lang.String |
toRCSString(java.lang.String EOL)
Converts this delta into its RCS style string representation.
|
abstract void |
toRCSString(java.lang.StringBuffer s,
java.lang.String EOL)
Converts this delta into its RCS style string representation.
|
void |
toString(java.lang.StringBuffer s)
Converts this delta into its Unix diff style string representation.
|
abstract void |
verify(java.util.List target)
Verifies that this delta can be used to patch the given text.
|
arrayToString, arrayToString, stringToArray, stringToArraya, stringToArrayold, toStringprotected Chunk original
protected Chunk revised
static java.lang.Class[][] DeltaClass
public 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(java.util.List target)
throws PatchFailedException
target - the text to patch.PatchFailedException - if the patch cannot be applied.public final void patch(java.util.List target)
throws PatchFailedException
target - the text to patch.PatchFailedException - if the patch cannot be applied.public abstract void applyTo(java.util.List target)
target - the text to patch.PatchFailedException - if the patch cannot be applied.public void toString(java.lang.StringBuffer s)
public abstract void toRCSString(java.lang.StringBuffer s,
java.lang.String EOL)
s - a StringBuffer to which the string
representation will be appended.EOL - the string to use as line separator.public java.lang.String toRCSString(java.lang.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 2002 the Apache Software Foundation
Copyright ? 1999-2001 Juancarlo A?ez, Caracas, Venezuela.
All rights reserved
. http://www.suigeneris.org/jrcs