1 11 package org.eclipse.compare.patch; 12 13 import java.io.InputStream ; 14 15 import org.eclipse.core.resources.IEncodedStorage; 16 import org.eclipse.core.runtime.CoreException; 17 18 29 public interface IFilePatchResult { 30 31 38 public InputStream getOriginalContents(); 39 40 52 public InputStream getPatchedContents(); 53 54 59 public boolean hasMatches(); 60 61 66 public boolean hasRejects(); 67 68 75 public IHunk[] getRejects(); 76 77 92 public String getCharset() throws CoreException; 93 94 } 95 | Popular Tags |