Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeView.java')
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeView.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeView.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeView.java
index a467a784c..131df1b83 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeView.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeView.java
@@ -16,9 +16,9 @@ import org.eclipse.ui.IViewPart;
* A view that displays synchronization participants that are registered with the
* synchronize manager. This is essentially a generic container that allows
* multiple {@link ISynchronizeParticipant} implementations to share the same
- * view. The only behavior provided by the view is a mechanism for switching
+ * view. The only behavior provided by the view is a mechanism for switching
* between participants.
- * <p>
+ * <p>
* Clients can not add viewActions to this view because they will be global
* to all participants. Instead, add participant specific actions as described
* in {@link org.eclipse.team.ui.synchronize.ISynchronizePageConfiguration}.
@@ -26,33 +26,33 @@ import org.eclipse.ui.IViewPart;
* @see ISynchronizeManager#showSynchronizeViewInActivePage()
* @since 3.0
* @noimplement Clients are not intended to implement this interface.
- *
+ *
*/
public interface ISynchronizeView extends IViewPart {
/**
* The id for this view
*/
public static final String VIEW_ID = "org.eclipse.team.sync.views.SynchronizeView"; //$NON-NLS-1$
-
+
/**
* This id is no longer used.
* @deprecated not used, please use {@link #VIEW_ID} instead.
*/
@Deprecated
public static final String COMPARE_VIEW_ID = "org.eclipse.team.sync.views.CompareView"; //$NON-NLS-1$
-
+
/**
* Displays the given synchronize participant in the Synchronize View. This
* has no effect if this participant is already being displayed.
- *
+ *
* @param participant participant to be displayed, cannot be <code>null</code>
*/
public void display(ISynchronizeParticipant participant);
-
+
/**
* Returns the participant currently being displayed in the Synchronize View
* or <code>null</code> if none.
- *
+ *
* @return the participant currently being displayed in the Synchronize View
* or <code>null</code> if none
*/

Back to the top