1 11 package org.eclipse.team.internal.ccvs.core; 12 13 14 import java.util.Date ; 15 16 import org.eclipse.core.runtime.IAdaptable; 17 18 24 public interface ILogEntry extends IAdaptable { 25 26 29 public String getRevision(); 30 31 34 public String getAuthor(); 35 36 39 public Date getDate(); 40 41 44 public String getComment(); 45 46 49 public String getState(); 50 51 54 public CVSTag[] getTags(); 55 56 59 public ICVSRemoteFile getRemoteFile(); 60 61 64 public boolean isDeletion(); 65 } 66 67 | Popular Tags |