Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/ICVSFile.java')
-rw-r--r--bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/ICVSFile.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/ICVSFile.java b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/ICVSFile.java
index 8127c3385..773d78689 100644
--- a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/ICVSFile.java
+++ b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/ICVSFile.java
@@ -67,7 +67,7 @@ public interface ICVSFile extends ICVSResource {
void copyTo(String filename) throws CVSException;
/**
- * Answers the current timestamp for this file.
+ * Answers the current timestamp for this file with second precision.
*/
Date getTimeStamp();
@@ -90,7 +90,8 @@ public interface ICVSFile extends ICVSResource {
boolean isModified() throws CVSException;
/**
- * Get the log entries of the remote file
+ * Answers the revision history for this file. This is similar to the
+ * output of the log command.
*/
public ILogEntry[] getLogEntries(IProgressMonitor monitor) throws TeamException;
} \ No newline at end of file

Back to the top