Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/actions/ShowSynchronizeParticipantAction.java')
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/actions/ShowSynchronizeParticipantAction.java41
1 files changed, 41 insertions, 0 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/actions/ShowSynchronizeParticipantAction.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/actions/ShowSynchronizeParticipantAction.java
new file mode 100644
index 000000000..0db3424b5
--- /dev/null
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/actions/ShowSynchronizeParticipantAction.java
@@ -0,0 +1,41 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2003 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Common Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.team.ui.synchronize.actions;
+
+import org.eclipse.jface.action.Action;
+import org.eclipse.team.ui.synchronize.ISynchronizeView;
+import org.eclipse.team.ui.synchronize.ISynchronizeParticipant;
+
+public class ShowSynchronizeParticipantAction extends Action {
+
+ private ISynchronizeParticipant fPage;
+ private ISynchronizeView fView;
+
+ public void run() {
+ if (!fPage.equals(fView.getParticipant())) {
+ fView.display(fPage);
+ }
+ }
+
+ /**
+ * Constructs an action to display the given synchronize participant in the
+ * synchronize view.
+ *
+ * @param view the synchronize view in which the given page is contained
+ * @param participant the participant to show
+ */
+ public ShowSynchronizeParticipantAction(ISynchronizeView view, ISynchronizeParticipant participant) {
+ super(participant.getName(), Action.AS_RADIO_BUTTON);
+ fPage = participant;
+ fView = view;
+ setImageDescriptor(participant.getImageDescriptor());
+ }
+}

Back to the top