public abstract class Delta<T> extends Object
| Modifier and Type | Class and Description |
|---|---|
static class |
Delta.TYPE
Specifies the type of the delta.
|
| Constructor and Description |
|---|
Delta(Chunk<T> original,
Chunk<T> revised)
Construct the delta for original and revised chunks
|
| Modifier and Type | Method and Description |
|---|---|
abstract void |
applyTo(List<T> target)
Applies this delta as the patch for a given target
|
boolean |
equals(Object obj) |
Chunk<T> |
getOriginal() |
Chunk<T> |
getRevised() |
abstract Delta.TYPE |
getType()
Returns the type of delta
|
int |
hashCode() |
abstract void |
restore(List<T> target)
Cancel this delta for a given revised text.
|
void |
setOriginal(Chunk<T> original) |
void |
setRevised(Chunk<T> revised) |
abstract void |
verify(List<T> target)
Verifies that this delta can be used to patch the given text.
|
public abstract void verify(List<T> target) throws PatchFailedException
target - the text to patch.PatchFailedException - if the patch cannot be applied.public abstract void applyTo(List<T> target) throws PatchFailedException
target - the given targetPatchFailedExceptionpublic abstract void restore(List<T> target)
target - the given revised textpublic abstract Delta.TYPE getType()
public void setOriginal(Chunk<T> original)
original - The Chunk describing the original text to set.public void setRevised(Chunk<T> revised)
revised - The Chunk describing the revised text to set.Copyright © 2015. All rights reserved.