1 11 package org.eclipse.compare.patch; 12 13 import org.eclipse.core.resources.IStorage; 14 import org.eclipse.core.runtime.IPath; 15 import org.eclipse.core.runtime.IProgressMonitor; 16 17 28 public interface IFilePatch { 29 30 38 public IPath getTargetPath(PatchConfiguration configuration); 39 40 50 public IFilePatchResult apply(IStorage contents, 51 PatchConfiguration configuration, IProgressMonitor monitor); 52 53 60 public String getHeader(); 61 } 62 | Popular Tags |