Package org.eclipse.compare.internal.core.patch

Examples of org.eclipse.compare.internal.core.patch.FilePatch2


   * @return IFilePatch2 instance
   */
  public static IFilePatch2 createFilePatch(IPath oldPath, long oldDate,
      IPath newPath, long newDate, IHunk[] hunks) {
    reorder(hunks);
    FilePatch2 fileDiff = new FilePatch2(oldPath, oldDate, newPath, newDate);
    for (int i = 0; i < hunks.length; i++) {
      fileDiff.add((Hunk) hunks[i]);
    }
    return fileDiff;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.compare.internal.core.patch.FilePatch2

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.