Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2016-04-12 17:48:16 +0000
committerLars Vogel2016-04-12 17:48:36 +0000
commit790652f8bd1c247f29872621ca43f5b825104677 (patch)
treedf0dccf866f7453fad56c7a49169fb151fb11509 /bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeView.java
parente3b27690981c05c355fb29a3f213d6028dda3290 (diff)
downloadeclipse.platform.team-790652f8bd1c247f29872621ca43f5b825104677.tar.gz
eclipse.platform.team-790652f8bd1c247f29872621ca43f5b825104677.tar.xz
eclipse.platform.team-790652f8bd1c247f29872621ca43f5b825104677.zip
Bug 491533 - Run remove unnecessary whitespace cleanup onY20160414-1000I20160417-1112
org.eclipse.team.ui Change-Id: I422dc120f97d04250967609c7d423377ec11bf01 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
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