Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zarna2010-03-03 13:41:48 +0000
committerTomasz Zarna2010-03-03 13:41:48 +0000
commit0dcb6353de009c794d4284659ca0efc0fbefc079 (patch)
treef3ccf92d837e38bebc4f3a6e77b80daceea867e5 /bundles/org.eclipse.team.ui/src/org/eclipse/team
parenta8dfdf3e27f5810772364a7dc188ef5edf481fa9 (diff)
downloadeclipse.platform.team-0dcb6353de009c794d4284659ca0efc0fbefc079.tar.gz
eclipse.platform.team-0dcb6353de009c794d4284659ca0efc0fbefc079.tar.xz
eclipse.platform.team-0dcb6353de009c794d4284659ca0efc0fbefc079.zip
Comments fixed.
Diffstat (limited to 'bundles/org.eclipse.team.ui/src/org/eclipse/team')
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/ISynchronizeModelProvider.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/ISynchronizeModelProvider.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/ISynchronizeModelProvider.java
index c8e9ec5b4..f86ee0da5 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/ISynchronizeModelProvider.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/ISynchronizeModelProvider.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2006 IBM Corporation and others.
+ * Copyright (c) 2000, 2010 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -27,7 +27,7 @@ import org.eclipse.team.ui.synchronize.ISynchronizeModelElement;
public interface ISynchronizeModelProvider {
/**
- * Property constant used to indicate that the veiwer sorter has changed.
+ * Property constant used to indicate that the viewer sorter has changed.
* Property change notifications for the viewer sorter change do not include
* the old and new viewer sorter. Instead, clients should re-obtain the sorter
* from the provider.
@@ -47,7 +47,7 @@ public interface ISynchronizeModelProvider {
public ISynchronizeModelProviderDescriptor getDescriptor();
/**
- * Return the <code>AbstractTreeViewer</code> asociated with this content
+ * Return the <code>AbstractTreeViewer</code> associated with this content
* provider or <code>null</code> if the viewer is not of the proper type.
* @return the viewer
*/
@@ -55,6 +55,7 @@ public interface ISynchronizeModelProvider {
/**
* Builds the viewer model based on the contents of the sync set.
+ * @param monitor the progress monitor
* @return the root element of the generated model.
*/
public abstract ISynchronizeModelElement prepareInput(IProgressMonitor monitor);

Back to the top