Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.team.core/src/org/eclipse/team/core/history/IFileHistory.java')
-rw-r--r--bundles/org.eclipse.team.core/src/org/eclipse/team/core/history/IFileHistory.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/history/IFileHistory.java b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/history/IFileHistory.java
index a40fab470..1b7cf1b94 100644
--- a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/history/IFileHistory.java
+++ b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/history/IFileHistory.java
@@ -14,7 +14,7 @@ import org.eclipse.team.core.history.provider.FileHistory;
/**
* Provides a complete set of IFileRevisions that make up this IFileHistory.
- *
+ *
* @since 3.2
* @noimplement This interface is not intended to be implemented by clients.
* Clients can instead subclass {@link FileHistory}.
@@ -28,15 +28,15 @@ public interface IFileHistory {
* an empty array if this file has no revisions
*/
public abstract IFileRevision[] getFileRevisions();
-
+
/**
* Returns the file revision that corresponds to the passed in content identifier.
* @param id the content identifier that uniquely identifies a file revision.
- * @return the file revision corresponding to the passed in content id or null if no file revisions
+ * @return the file revision corresponding to the passed in content id or null if no file revisions
* match the given id
*/
public abstract IFileRevision getFileRevision(String id);
-
+
/**
* Returns the direct predecessors of the given revision.
* If the file revision was the result of a single modification,
@@ -49,13 +49,13 @@ public interface IFileHistory {
* an empty array if there are no predecessors
*/
public abstract IFileRevision[] getContributors(IFileRevision revision);
-
+
/**
* Returns all of the direct descendents of the given in file revision.
- * Multiple revisions may be returned if the given revision is a branch
+ * Multiple revisions may be returned if the given revision is a branch
* point or was merged into another revision. Some history providers may not
* track branches or merges, in which case a singel descendant may be returned.
- *
+ *
* @param revision the file revision that acts as the root
* @return an array containing all of the the descendents or an empty array if the revision has
* no direct descendents

Back to the top