Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjames2001-11-23 20:09:31 +0000
committerjames2001-11-23 20:09:31 +0000
commit76f3e5ee9f536e5b58a53a0f797fa86653377252 (patch)
treeefa2c93f9f0f95696f42d8a75f97f87d42219c5c /bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/ILogEntry.java
parent79487a49b38b74f17f8ca3f11f4d1ee42676fc3a (diff)
downloadeclipse.platform.team-76f3e5ee9f536e5b58a53a0f797fa86653377252.tar.gz
eclipse.platform.team-76f3e5ee9f536e5b58a53a0f797fa86653377252.tar.xz
eclipse.platform.team-76f3e5ee9f536e5b58a53a0f797fa86653377252.zip
Implement IAdaptable, extend PlatformObject
Diffstat (limited to 'bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/ILogEntry.java')
-rw-r--r--bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/ILogEntry.java104
1 files changed, 53 insertions, 51 deletions
diff --git a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/ILogEntry.java b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/ILogEntry.java
index 6b64d8ae6..220a8eb73 100644
--- a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/ILogEntry.java
+++ b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/ILogEntry.java
@@ -1,51 +1,53 @@
-package org.eclipse.team.ccvs.core;
-
-/*
- * (c) Copyright IBM Corp. 2000, 2001.
- * All Rights Reserved.
- */
-
-/**
- * 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 {
-
- /**
- * 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 String getDate();
-
- /**
- * Get the comment for the revision
- */
- public String getComment();
-
- /**
- * Get the state
- */
- public String getState();
-
- /**
- * Get the tags associated with the revision
- */
- public String[] getTags();
-
- /**
- * Get the remote file for this entry
- */
- public IRemoteFile getRemoteFile();
-}
-
+package org.eclipse.team.ccvs.core;
+
+import org.eclipse.core.runtime.IAdaptable;
+
+/*
+ * (c) Copyright IBM Corp. 2000, 2001.
+ * All Rights Reserved.
+ */
+
+/**
+ * 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 String getDate();
+
+ /**
+ * Get the comment for the revision
+ */
+ public String getComment();
+
+ /**
+ * Get the state
+ */
+ public String getState();
+
+ /**
+ * Get the tags associated with the revision
+ */
+ public String[] getTags();
+
+ /**
+ * Get the remote file for this entry
+ */
+ public IRemoteFile getRemoteFile();
+}
+

Back to the top