Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2002-11-29 17:51:29 +0000
committerMichael Valenta2002-11-29 17:51:29 +0000
commit21194869bc1d46c36ba7ab5e31ac9cfac07b722e (patch)
tree22fab3af9dee9c7127118fe219c9ce10cb82d503
parentfdb0f9c917820cb9362f9a23361e5a11933a9781 (diff)
downloadeclipse.platform.team-21194869bc1d46c36ba7ab5e31ac9cfac07b722e.tar.gz
eclipse.platform.team-21194869bc1d46c36ba7ab5e31ac9cfac07b722e.tar.xz
eclipse.platform.team-21194869bc1d46c36ba7ab5e31ac9cfac07b722e.zip
Enhanced a comment
-rw-r--r--bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/ICVSResource.java12
1 files changed, 10 insertions, 2 deletions
diff --git a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/ICVSResource.java b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/ICVSResource.java
index a87b42b81..3f462d44e 100644
--- a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/ICVSResource.java
+++ b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/ICVSResource.java
@@ -103,11 +103,19 @@ public interface ICVSResource {
public String getRelativePath(ICVSFolder ancestor) throws CVSException;
/**
- * Get the remote location of a resource.
+ * Get the absolute remote location of a resource. This method is used by
+ * the CVS command infrastructure during command execution. The root is used
+ * in situations where the resource is not under CVS control. The remote
+ * path that the resource would have if it was is determined by recursively
+ * searching the resource's parent until a managed folder is found. The
+ * provided root is used to stop the recursive search if no managed parent
+ * is found.
+ *
+ * @param root the root folder of the command.
*
* @return the remote location.
*/
- public String getRemoteLocation(ICVSFolder stopSearching) throws CVSException;
+ public String getRemoteLocation(ICVSFolder root) throws CVSException;
/**
* Answers the workspace synchronization information for this resource. This would

Back to the top