blob: 2b5b5aa40036914b53ed58784e3798368b8169b9 [file] [log] [blame]
package org.eclipse.team.internal.ccvs.core;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import java.util.Date;
import org.eclipse.core.runtime.IAdaptable;
/**
* Instances of ILogEntry represent an entry for a CVS file that results
* from the cvs log command.
*
* Clients are not expected to implement this interface
*/
public interface ILogEntry extends IAdaptable {
/**
* Get the revision for the entry
*/
public String getRevision();
/**
* Get the author of the revision
*/
public String getAuthor();
/**
* Get the date the revision was committed
*/
public Date getDate();
/**
* Get the comment for the revision
*/
public String getComment();
/**
* Get the state
*/
public String getState();
/**
* Get the tags associated with the revision
*/
public CVSTag[] getTags();
/**
* Get the remote file for this entry
*/
public ICVSRemoteFile getRemoteFile();
/**
* Does the log entry represent a deletion (stat = "dead")
*/
public boolean isDeletion();
}