Class DiffMatchPatch.Patch

  • Enclosing class:
    DiffMatchPatch

    public static class DiffMatchPatch.Patch
    extends java.lang.Object
    Class representing one patch operation.
    • Constructor Summary

      Constructors 
      Constructor Description
      Patch()
      Constructor.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String toString()
      Emulate GNU diff's format.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • start1

        public int start1
      • start2

        public int start2
      • length1

        public int length1
      • length2

        public int length2
    • Constructor Detail

      • Patch

        public Patch()
        Constructor. Initializes with an empty list of diffs.
    • Method Detail

      • toString

        public java.lang.String toString()
        Emulate GNU diff's format. Header: @@ -382,8 +481,9 @@ Indices are printed as 1-based, not 0-based.
        Overrides:
        toString in class java.lang.Object
        Returns:
        The GNU diff string.