Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2006-03-25 02:54:03 +0000
committerMichael Valenta2006-03-25 02:54:03 +0000
commit4c4c3f99849ad32c873618441573b231d15f0cdb (patch)
tree85602aec4c15cd82c738591b6f130c2df8a5d28e /bundles/org.eclipse.team.core/src/org/eclipse/team/core/mapping/ISynchronizationScope.java
parent1ac6a565f4c9bb13e738b9a03174d53feca74a20 (diff)
downloadeclipse.platform.team-4c4c3f99849ad32c873618441573b231d15f0cdb.tar.gz
eclipse.platform.team-4c4c3f99849ad32c873618441573b231d15f0cdb.tar.xz
eclipse.platform.team-4c4c3f99849ad32c873618441573b231d15f0cdb.zip
Fixed some javadoc
Diffstat (limited to 'bundles/org.eclipse.team.core/src/org/eclipse/team/core/mapping/ISynchronizationScope.java')
-rw-r--r--bundles/org.eclipse.team.core/src/org/eclipse/team/core/mapping/ISynchronizationScope.java9
1 files changed, 4 insertions, 5 deletions
diff --git a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/mapping/ISynchronizationScope.java b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/mapping/ISynchronizationScope.java
index 1f8d82ac8..44f126377 100644
--- a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/mapping/ISynchronizationScope.java
+++ b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/mapping/ISynchronizationScope.java
@@ -13,7 +13,6 @@ package org.eclipse.team.core.mapping;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.resources.mapping.*;
-import org.eclipse.team.core.mapping.provider.SynchronizationScopeManager;
/**
* Interface which defines the protocol for translating a set of
@@ -21,11 +20,11 @@ import org.eclipse.team.core.mapping.provider.SynchronizationScopeManager;
* complete set of resources to be operated on.
* <p>
* This interface is not intended to be implemented by clients. Instead, clients should
- * use a {@link SynchronizationScopeManager} to generate a resource mapping scope from
+ * use a {@link ISynchronizationScopeManager} to generate a resource mapping scope from
* a set of input resource mappings.
*
* @see org.eclipse.core.resources.mapping.ResourceMapping
- * @see SynchronizationScopeManager
+ * @see ISynchronizationScopeManager
*
* @since 3.2
*/
@@ -49,7 +48,7 @@ public interface ISynchronizationScope {
*
* @see ResourceMapping#getTraversals(ResourceMappingContext, org.eclipse.core.runtime.IProgressMonitor)
*
- * @return the resource mapping contxt that the scope
+ * @return the resource mapping context that the scope
* uses to obtain traversals from resource mappings
*/
ResourceMappingContext getContext();
@@ -199,7 +198,7 @@ public interface ISynchronizationScope {
* is called by {@link ISynchronizationScopeParticipant}
* instances when they detect changes that require the scope
* to be adjusted.
- * @param mappings the mappings to be refeshed.
+ * @param mappings the mappings to be refreshed.
*/
void refresh(ResourceMapping[] mappings);

Back to the top