1 11 package org.eclipse.team.internal.ccvs.core; 12 13 14 import java.io.InputStream ; 15 16 import org.eclipse.core.runtime.IProgressMonitor; 17 import org.eclipse.team.core.TeamException; 18 19 28 public interface ICVSRemoteFile extends ICVSRemoteResource, ICVSFile { 29 30 36 public InputStream getContents(IProgressMonitor progress) throws TeamException; 37 38 43 public ILogEntry getLogEntry(IProgressMonitor monitor) throws TeamException; 44 45 48 public ILogEntry[] getLogEntries(IProgressMonitor monitor) throws TeamException; 49 50 56 public String getRevision() throws TeamException; 57 } 58 59 | Popular Tags |