com.jaxfront.core.util.diff
Class diff_match_patch.Patch

java.lang.Object
  extended by com.jaxfront.core.util.diff.diff_match_patch.Patch
Enclosing class:
diff_match_patch

public static class diff_match_patch.Patch
extends java.lang.Object

Class representing one patch operation.


Field Summary
 java.util.LinkedList<diff_match_patch.Diff> diffs
           
 int length1
           
 int length2
           
 int start1
           
 int start2
           
 
Constructor Summary
diff_match_patch.Patch()
          Constructor.
 
Method Summary
 java.lang.String toString()
          Emmulate GNU diff's format.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

diffs

public java.util.LinkedList<diff_match_patch.Diff> diffs

length1

public int length1

length2

public int length2

start1

public int start1

start2

public int start2
Constructor Detail

diff_match_patch.Patch

public diff_match_patch.Patch()
Constructor. Initializes with an empty list of diffs.

Method Detail

toString

public java.lang.String toString()
Emmulate GNU diff's format. Header: @@ -382,8 +481,9 @@ Indicies are printed as 1-based, not 0-based.

Overrides:
toString in class java.lang.Object
Returns:
The GNU diff string.